This commit is contained in:
parent
c3a34bf180
commit
4411c013b1
14 changed files with 209 additions and 32 deletions
|
@ -18,6 +18,10 @@
|
|||
#include "platform\platform.h"
|
||||
#endif
|
||||
|
||||
#ifndef __TRIGGERS_TSSWITCH_H__
|
||||
#include "triggers\tsswitch.h"
|
||||
#endif
|
||||
|
||||
class CNpcSteamSwitchPlatform : public CNpcPlatform
|
||||
{
|
||||
public:
|
||||
|
@ -25,15 +29,18 @@ public:
|
|||
virtual void setWaypoints( sThingPlatform *ThisPlatform );
|
||||
protected:
|
||||
virtual void processMovement( int _frames );
|
||||
virtual void processTimer( int _frames );
|
||||
|
||||
enum NPC_STEAM_SWITCH_STATE
|
||||
{
|
||||
NPC_STEAM_SWITCH_STOP = 0,
|
||||
NPC_STEAM_SWITCH_DEPRESS = 1,
|
||||
NPC_STEAM_SWITCH_OFF,
|
||||
NPC_STEAM_SWITCH_RETURN,
|
||||
};
|
||||
|
||||
s32 m_maxExtension;
|
||||
CSteamSwitchEmitterTrigger *trigger;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue