From 416a5cbab21c480ae9e85b07fd9424452cbcb611 Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Mon, 3 Jul 2023 02:28:21 -0600 Subject: A little first day shit --- src/game.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/game.c') 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(); +} -- cgit v1.2.3