From d67fc3baa8180703f2280738d13335cb9665b348 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 3 Jul 2025 15:34:28 -0600 Subject: first commit --- src/main.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main.c (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..9cc6f5e --- /dev/null +++ b/src/main.c @@ -0,0 +1,15 @@ +#include "game.h" + +int main (int argc, char** argv) +{ + Game game; + initGame(&game); + + while (!WindowShouldClose()) + { + updateGame(&game); + } + + closeGame(&game); + return 0; +} -- cgit v1.2.3