intravenous

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/game.h	Sat Apr 21 06:56:33 2012 +0300
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef GAME_H_
     1.5 +#define GAME_H_
     1.6 +
     1.7 +bool game_init();
     1.8 +void game_shutdown();
     1.9 +
    1.10 +void game_update(unsigned long msec);
    1.11 +void game_draw();
    1.12 +
    1.13 +void game_input_keyb(int key, int state);
    1.14 +
    1.15 +#endif	// GAME_H_