This commit is contained in:
parent
2a450517ee
commit
b3cb1ea759
4 changed files with 21 additions and 1 deletions
|
@ -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:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue