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

@ -965,7 +965,7 @@ CNpcEnemy::NPC_DATA CNpcEnemy::m_data[NPC_UNIT_TYPE_MAX] =
},
{ // NPC_SHELL
ACTORS_SHELL_SBK,
0,//ACTORS_SHELL_SBK,
0,
NPC_SENSOR_NONE,
NPC_MOVEMENT_STATIC,

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