diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-03 02:28:21 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-03 02:28:21 -0600 |
commit | 416a5cbab21c480ae9e85b07fd9424452cbcb611 (patch) | |
tree | d88c3ac221dfceeab64a53963ab4113d3a75d39e /src/game.c | |
parent | e6fb000c6874874d50d94eee4b1c8e889f6791f1 (diff) |
A little first day shit
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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(); +} |