This commit is contained in:
parent
3883c18a6f
commit
478ea22848
3 changed files with 31 additions and 52 deletions
|
@ -191,6 +191,14 @@
|
|||
#include "enemy\nmjback.h"
|
||||
#endif
|
||||
|
||||
#ifndef __ENEMY_NSJBACK_H__
|
||||
#include "enemy\nsjback.h"
|
||||
#endif
|
||||
|
||||
#ifndef __ENEMY_NBUTTFLY_H__
|
||||
#include "enemy\nbuttfly.h"
|
||||
#endif
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Enemy NPCs
|
||||
|
@ -430,6 +438,18 @@ CNpcEnemy *CNpcEnemy::Create(int enemyType)
|
|||
break;
|
||||
}
|
||||
|
||||
case CNpcEnemy::NPC_SMALL_JELLYFISH_BACKGROUND:
|
||||
{
|
||||
enemy = new ("small jellyfish background") CNpcSmallJellyfishBackgroundEnemy;
|
||||
break;
|
||||
}
|
||||
|
||||
case CNpcEnemy::NPC_BUTTERFLY_BACKGROUND:
|
||||
{
|
||||
enemy = new ("butterfly background") CNpcButterflyBackgroundEnemy;
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
SYSTEM_DBGMSG("UNKNOWN %i\n",enemyType);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue