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
|
||||
{
|
||||
float x34_;
|
||||
float x38_;
|
||||
float x3c_;
|
||||
bool x40_;
|
||||
bool x41_;
|
||||
bool x42_;
|
||||
float x34_time;
|
||||
float x38_startTime;
|
||||
float x3c_maxRandDelay;
|
||||
bool x40_loop;
|
||||
bool x41_autoStart;
|
||||
bool x42_isTiming;
|
||||
public:
|
||||
CScriptTimer(TUniqueId, const std::string& name, const CEntityInfo& info,
|
||||
float, float, bool, bool, bool);
|
||||
|
||||
void Think(float, CStateManager &);
|
||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager &stateMgr);
|
||||
bool IsTiming();
|
||||
void StartTiming(bool);
|
||||
bool IsTiming() const;
|
||||
void StartTiming(bool isTiming);
|
||||
void Reset(CStateManager&);
|
||||
void ApplyTime(float, CStateManager&);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue