mirror of https://github.com/AxioDL/metaforce.git
22 lines
497 B
C++
22 lines
497 B
C++
#ifndef CSCRIPTRELAY_HPP
|
|
#define CSCRIPTRELAY_HPP
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CScriptRelay : public CEntity
|
|
{
|
|
TUniqueId x34_ = kInvalidUniqueId;
|
|
u32 x38_ = 0;
|
|
public:
|
|
CScriptRelay(TUniqueId, const std::string&, const CEntityInfo&, bool);
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager &stateMgr);
|
|
void Think(float, CStateManager& stateMgr);
|
|
void UpdateObjectRef(CStateManager& stateMgr);
|
|
};
|
|
}
|
|
|
|
#endif // CSCRIPTRELAY_HPP
|