This commit is contained in:
Charles 2001-07-05 20:08:39 +00:00
parent 5dca926fb0
commit fe4e14c13b
7 changed files with 38 additions and 1 deletions

View file

@ -207,6 +207,10 @@
#include "platform\pgbubble.h"
#endif
#ifndef __PLATFORM_PFBLOCK_H__
#include "platform\pfblock.h"
#endif
#include "fx\fx.h"
#include "fx\fxjfish.h"
@ -463,6 +467,12 @@ CNpcPlatform *CNpcPlatform::Create(int Type)
break;
}
case NPC_FALLING_BLOCK_PLATFORM:
{
platform = new ("falling block platform") CNpcFallingBlockPlatform;
break;
}
case NPC_CLAM_PLATFORM:
{
platform = new ("clam platform") CNpcClamPlatform;