This commit is contained in:
parent
d8d896cdf4
commit
7943f99cbb
11 changed files with 114 additions and 2 deletions
|
@ -75,6 +75,10 @@
|
|||
#include "hazard\hbwheel.h"
|
||||
#endif
|
||||
|
||||
#ifndef __HAZARD_HDBARREL_H__
|
||||
#include "hazard\hdbarrel.h"
|
||||
#endif
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
@ -91,6 +95,7 @@ CNpcHazard::NPC_HAZARD_UNIT_TYPE CNpcHazard::mapEditConvertTable[NPC_HAZARD_TYPE
|
|||
NPC_FAN_HAZARD,
|
||||
NPC_SPIKES_HAZARD,
|
||||
NPC_BIG_WHEEL_HAZARD,
|
||||
NPC_DUAL_PLATFORM_BARREL_HAZARD,
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -169,6 +174,12 @@ CNpcHazard *CNpcHazard::Create(sThingHazard *ThisHazard)
|
|||
break;
|
||||
}
|
||||
|
||||
case NPC_DUAL_PLATFORM_BARREL_HAZARD:
|
||||
{
|
||||
hazard = new ("dual platform barrel hazard") CNpcDualPlatformBarrelHazard;
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
hazard = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue