This commit is contained in:
Charles 2001-05-30 20:24:02 +00:00
parent 650f284e4a
commit 0ff14a08b7
14 changed files with 161 additions and 7 deletions

View file

@ -39,6 +39,10 @@
#include "triggers\tplatfrm.h"
#endif
#ifndef __TRIGGERS_TGARYGO_H__
#include "triggers\tgarygo.h"
#endif
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
@ -81,6 +85,11 @@ CTrigger *trigger;
trigger=(COutOfWaterTrigger*)new ("OutOfWaterTrigger") COutOfWaterTrigger();
break;
// Gary start trigger
case TRIGGER_GARYSTART:
trigger=(CGaryStartTrigger*)new( "GaryStartTrigger") CGaryStartTrigger();
break;
case TRIGGER_PLATFORM:
trigger = (CPlatformTrigger*)new ("PlatformTrigger") CPlatformTrigger();
break;