This commit is contained in:
Charles 2001-04-27 21:12:31 +00:00
parent eddad29b71
commit 92e7e36989
7 changed files with 49 additions and 1 deletions

View file

@ -177,6 +177,10 @@
#include "enemy\noilblob.h"
#endif
#ifndef __ENEMY_NSHELL_H__
#include "enemy\nshell.h"
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Enemy NPCs
@ -471,6 +475,12 @@ CNpcEnemy *CNpcEnemy::Create(sThingActor *ThisActor)
break;
}
case CNpcEnemy::NPC_SHELL:
{
enemy = new ("shell") CNpcShellEnemy;
break;
}
default:
{
printf("UNKNOWN %i\n",enemyType);