diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2,6 +2,13 @@ #include "game.h" int main(int argc, char ** argv) { - puts("hihi"); + Game game; + initGame(&game); + + while (!WindowShouldClose()) { + updateGame(&game); + } + + closeGame(&game); return 0; } |