bloboland
diff src/game.cc @ 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.cc Sat Dec 15 07:52:13 2012 +0200 1.3 @@ -0,0 +1,19 @@ 1.4 +#include "game.h" 1.5 +#include "opengl.h" 1.6 + 1.7 +bool game_init() 1.8 +{ 1.9 + return true; 1.10 +} 1.11 + 1.12 +void game_shutdown() 1.13 +{ 1.14 +} 1.15 + 1.16 +void game_iter(double dt) 1.17 +{ 1.18 +} 1.19 + 1.20 +void game_render() 1.21 +{ 1.22 +}