This commit is contained in:
parent
4c93823479
commit
f701f34dc4
25 changed files with 264 additions and 276 deletions
|
@ -195,6 +195,14 @@
|
|||
#include "platform\pbubtube.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PLATFORM_PCLAM_H__
|
||||
#include "platform\pclam.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PLATFORM_PPLAYER_H__
|
||||
#include "platform\pplayer.h"
|
||||
#endif
|
||||
|
||||
#include "fx\fx.h"
|
||||
#include "fx\fxjfish.h"
|
||||
|
||||
|
@ -451,6 +459,19 @@ CNpcPlatform *CNpcPlatform::Create(int Type)
|
|||
break;
|
||||
}
|
||||
|
||||
case NPC_CLAM_PLATFORM:
|
||||
{
|
||||
platform = new ("clam platform") CNpcClamPlatform;
|
||||
break;
|
||||
}
|
||||
|
||||
case NPC_PLAYER_BUBBLE_PLATFORM:
|
||||
{
|
||||
platform = new ("player bubble platform") CNpcPlayerBubblePlatform;
|
||||
platform->setGraphic( (u8) 0 );
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
ASSERT( 0 );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue