This commit is contained in:
Charles 2001-06-14 16:07:48 +00:00
parent 4c93823479
commit f701f34dc4
25 changed files with 264 additions and 276 deletions

View file

@ -199,6 +199,10 @@
#include "enemy\nbuttfly.h"
#endif
#ifndef __ENEMY_NPROJJF_H__
#include "enemy\nprojjf.h"
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Enemy NPCs
@ -450,6 +454,12 @@ CNpcEnemy *CNpcEnemy::Create(int enemyType)
break;
}
case CNpcEnemy::NPC_PROJECTILE_JELLYFISH:
{
enemy = new ("projectile jellyfish") CNpcSmallJellyfishProjectileEnemy;
break;
}
default:
{
SYSTEM_DBGMSG("UNKNOWN %i\n",enemyType);