This commit is contained in:
Charles 2001-05-04 23:12:26 +00:00
parent 9ea6f40efa
commit c1386b8903
11 changed files with 177 additions and 2 deletions

View file

@ -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;