aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/game.c b/src/game.c
index 7bb61ba..89f17d6 100644
--- a/src/game.c
+++ b/src/game.c
@@ -1 +1,15 @@
#include "game.h"
+
+void initGame(Game * game) {
+ InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "Killa Facsista");
+}
+
+void closeGame(Game * game) {
+ CloseWindow();
+}
+
+void updateGame(Game * game) {
+ BeginDrawing();
+
+ EndDrawing();
+}