2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 09:47:43 +00:00

Formatting, and more script object implementations

This commit is contained in:
2016-12-19 10:27:58 -08:00
parent 03a93c52b9
commit 37aab51253
55 changed files with 921 additions and 978 deletions

View File

@@ -8,9 +8,22 @@ namespace urde
class CScriptTimer : public CEntity
{
float x34_;
float x38_;
float x3c_;
bool x40_;
bool x41_;
bool x42_;
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);
void Reset(CStateManager&);
void ApplyTime(float, CStateManager&);
};
}