This commit is contained in:
parent
9ea6f40efa
commit
c1386b8903
11 changed files with 177 additions and 2 deletions
|
@ -119,6 +119,10 @@
|
|||
#include "platform\plantern.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PLATFORM_PBGEYSER_H__
|
||||
#include "platform\pbgeyser.h"
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -268,6 +272,15 @@ CNpcPlatform *CNpcPlatform::Create(sThingPlatform *ThisPlatform)
|
|||
break;
|
||||
}
|
||||
|
||||
case NPC_BUBBLE_GEYSER_GENERATOR:
|
||||
{
|
||||
CNpcGeyserPlatformGenerator *generator;
|
||||
generator = new ("bubble geyser generator") CNpcGeyserPlatformGenerator;
|
||||
generator->setTargetType( NPC_BUBBLE_PLATFORM );
|
||||
platform = generator;
|
||||
break;
|
||||
}
|
||||
|
||||
case NPC_LANTERN_PLATFORM:
|
||||
{
|
||||
platform = new ("lantern platform") CNpcLanternPlatform;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue