mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 17:57:59 +03:00
15 lines
403 B
C++
15 lines
403 B
C++
#pragma once
|
|
#include "Specific/phd_global.h"
|
|
|
|
struct ITEM_INFO;
|
|
struct COLL_INFO;
|
|
|
|
namespace TEN::Entities::Generic
|
|
{
|
|
void TriggerTorchFlame(char fxObj, char node);
|
|
void DoFlameTorch();
|
|
void GetFlameTorch();
|
|
void TorchControl(short itemNumber);
|
|
void LaraTorch(PHD_VECTOR* src, PHD_VECTOR* target, int rot, int color);
|
|
void FireCollision(short itemNumber, ITEM_INFO* laraItem, COLL_INFO* coll);
|
|
}
|