intravenous

view src/game.h @ 0:2b30f261f641

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Apr 2012 06:56:33 +0300
parents
children 3ea290d35984
line source
1 #ifndef GAME_H_
2 #define GAME_H_
4 bool game_init();
5 void game_shutdown();
7 void game_update(unsigned long msec);
8 void game_draw();
10 void game_input_keyb(int key, int state);
12 #endif // GAME_H_