bloboland

view 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 source
1 #include "game.h"
2 #include "opengl.h"
4 bool game_init()
5 {
6 return true;
7 }
9 void game_shutdown()
10 {
11 }
13 void game_iter(double dt)
14 {
15 }
17 void game_render()
18 {
19 }