about summary refs log tree commit diff
path: root/src/game/game.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-09 12:40:34 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-09 12:40:34 +0000
commit15c87bb5a2da904452e8351a02f52da1108f50d9 (patch)
tree3e51a93135e13f7604d31d7e1445508415c28018 /src/game/game.h
parent8a12d252b515d245a08520d1d92d63b0a1c0fc61 (diff)
downloadzcatch-15c87bb5a2da904452e8351a02f52da1108f50d9.tar.gz
zcatch-15c87bb5a2da904452e8351a02f52da1108f50d9.zip
added the missing sounds
Diffstat (limited to 'src/game/game.h')
-rw-r--r--src/game/game.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/game/game.h b/src/game/game.h
index 0951fb48..2c577d3e 100644
--- a/src/game/game.h
+++ b/src/game/game.h
@@ -69,7 +69,14 @@ enum
 	HOOK_RETRACTED=-1,
 	HOOK_IDLE=0,
 	HOOK_FLYING,
-	HOOK_GRABBED
+	HOOK_GRABBED,
+	
+	COREEVENT_GROUND_JUMP=0x01,
+	COREEVENT_AIR_JUMP=0x02,
+	COREEVENT_HOOK_LAUNCH=0x04,
+	COREEVENT_HOOK_ATTACH_PLAYER=0x08,
+	COREEVENT_HOOK_ATTACH_GROUND=0x10,
+	COREEVENT_HOOK_RETRACT=0x20,
 };
 
 class world_core
@@ -100,6 +107,8 @@ public:
 	int jumped;
 	player_input input;
 	
+	int triggered_events;
+	
 	void tick();
 	void move();