This commit is contained in:
parent
eddad29b71
commit
92e7e36989
7 changed files with 49 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue