This commit is contained in:
Charles 2001-05-16 19:45:43 +00:00
parent dba18ce77c
commit 320876b044
9 changed files with 27 additions and 13 deletions

View file

@ -14,8 +14,15 @@
#ifndef __ENEMY_NSHELL_H__
#define __ENEMY_NSHELL_H__
#ifndef __ENEMY_NPC_H__
#include "enemy\npc.h"
#endif
class CNpcShellEnemy : public CNpcEnemy
{
public:
virtual void render();
virtual int getFrameCount() {return( 1 );}
};
#endif