bloboland

diff src/game.h @ 0:e4818a3300b9

bloboland initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Dec 2012 07:52:13 +0200
parents
children cfe68befb7cc
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/game.h	Sat Dec 15 07:52:13 2012 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef GAME_H_
     1.5 +#define GAME_H_
     1.6 +
     1.7 +bool keystate[256];
     1.8 +
     1.9 +bool game_init();
    1.10 +void game_shutdown();
    1.11 +
    1.12 +void game_iter(double dt);
    1.13 +void game_render();
    1.14 +
    1.15 +#endif	// GAME_H_