This commit is contained in:
Charles 2001-05-16 21:15:50 +00:00
parent 306b6e9011
commit 0c9df556f0
5 changed files with 24 additions and 3 deletions

View file

@ -21,8 +21,13 @@
class CNpcShellEnemy : public CNpcEnemy
{
public:
virtual void postInit();
virtual void render();
virtual int getFrameCount() {return( 1 );}
virtual int getFrame() {return( m_shellType );}
protected:
u8 m_shellType;
};
#endif