fixes, optional beeps, accept arrow keys for control
[ansitris] / src / game.h
index 0fe598e..7687d6f 100644 (file)
@@ -2,10 +2,13 @@
 #define GAME_H_
 
 int quit;
+long tick_interval;
+int use_bell;
 
 int init_game(void);
 void cleanup_game(void);
 
-void proc_input(void);
+long update(long msec);
+void game_input(int c);
 
 #endif /* GAME_H_ */