mirror of https://github.com/AxioDL/metaforce.git
Add missed changes to CScriptTimer
This commit is contained in:
parent
37aab51253
commit
9aa28e73de
|
@ -8,20 +8,20 @@ namespace urde
|
||||||
|
|
||||||
class CScriptTimer : public CEntity
|
class CScriptTimer : public CEntity
|
||||||
{
|
{
|
||||||
float x34_;
|
float x34_time;
|
||||||
float x38_;
|
float x38_startTime;
|
||||||
float x3c_;
|
float x3c_maxRandDelay;
|
||||||
bool x40_;
|
bool x40_loop;
|
||||||
bool x41_;
|
bool x41_autoStart;
|
||||||
bool x42_;
|
bool x42_isTiming;
|
||||||
public:
|
public:
|
||||||
CScriptTimer(TUniqueId, const std::string& name, const CEntityInfo& info,
|
CScriptTimer(TUniqueId, const std::string& name, const CEntityInfo& info,
|
||||||
float, float, bool, bool, bool);
|
float, float, bool, bool, bool);
|
||||||
|
|
||||||
void Think(float, CStateManager &);
|
void Think(float, CStateManager &);
|
||||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager &stateMgr);
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager &stateMgr);
|
||||||
bool IsTiming();
|
bool IsTiming() const;
|
||||||
void StartTiming(bool);
|
void StartTiming(bool isTiming);
|
||||||
void Reset(CStateManager&);
|
void Reset(CStateManager&);
|
||||||
void ApplyTime(float, CStateManager&);
|
void ApplyTime(float, CStateManager&);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue