This commit is contained in:
Charles 2001-04-30 16:05:49 +00:00
parent 2a450517ee
commit b3cb1ea759
4 changed files with 21 additions and 1 deletions

View file

@ -91,6 +91,10 @@
#include "platform\pcart.h"
#endif
#ifndef __PLATFORM_PSEESAW_H__
#include "platform\pseesaw.h"
#endif
#ifndef __PLATFORM_PPLAYER_H__
#include "platform\pplayer.h"
#endif
@ -192,6 +196,12 @@ CNpcPlatform *CNpcPlatform::Create(sThingPlatform *ThisPlatform)
platform = new ("cart platform") CNpcCartPlatform;
break;
}
case NPC_SEESAW_PLATFORM:
{
platform = new ("seesaw platform") CNpcSeesawPlatform;
break;
}
default:
{

View file

@ -54,6 +54,7 @@ public:
NPC_CART_PLATFORM,
NPC_FISH_HOOK_2_PLATFORM,
NPC_BRANCH_PLATFORM,
NPC_SEESAW_PLATFORM,
NPC_PLAYER_BUBBLE_PLATFORM,
NPC_PLATFORM_TYPE_MAX,
};