From c2d4a7939fe7f06384f9364e7877c618d9466484 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Wed, 14 Feb 2024 15:20:30 -0700 Subject: first commit --- src/main.c | 17 +++++++++++++++++ 1 file changed, 17 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..e2e5e67 --- /dev/null +++ b/src/main.c @@ -0,0 +1,17 @@ +#include "gameCommon.h" +#include "game.h" +#include + +int main(int argc, char** argv) +{ + Game game; + initGame(&game); + + while (!WindowShouldClose()) + { + updateGame(&game); + } + + closeGame(&game); + return 0; +} -- cgit v1.2.3