mirror of https://github.com/AxioDL/metaforce.git
19 lines
489 B
C++
19 lines
489 B
C++
#pragma once
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
namespace urde {
|
|
class CScriptRelay : public CEntity {
|
|
TUniqueId x34_nextRelay = kInvalidUniqueId;
|
|
u32 x38_sendCount = 0;
|
|
|
|
public:
|
|
CScriptRelay(TUniqueId, std::string_view, const CEntityInfo&, bool);
|
|
|
|
void Accept(IVisitor& visitor);
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
|
void Think(float, CStateManager& stateMgr);
|
|
void UpdateObjectRef(CStateManager& stateMgr);
|
|
};
|
|
} // namespace urde
|