This commit is contained in:
Charles 2001-06-20 19:39:00 +00:00
parent 731ac49770
commit d5ca17cc3b
7 changed files with 300 additions and 2 deletions

View file

@ -17,6 +17,7 @@
class CNpcSubSharkEnemy : public CNpcEnemy
{
public:
virtual void think( int _frames );
virtual void postInit();
void render();
virtual void shutdown();
@ -24,6 +25,7 @@ protected:
virtual void processClose( int _frames );
virtual void processMovement( int _frames );
virtual void processShot( int _frames );
virtual void collidedWith(CThing *_thisThing);
enum NPC_SUB_SHARK_STATE
{
@ -40,6 +42,7 @@ protected:
u8 m_salvoCount;
bool m_meterOn;
s32 m_invulnerableTimer;
};
#endif