From dc655ac2079e0eea55c56b6712bf6a2167b57845 Mon Sep 17 00:00:00 2001 From: Emil Williams Date: Wed, 11 Feb 2026 22:40:44 +0000 Subject: primitive implementation added movement, explosions, the conception of death, and bugs --- source/main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'source/main.c') diff --git a/source/main.c b/source/main.c index d00f7e7..370e463 100644 --- a/source/main.c +++ b/source/main.c @@ -3,13 +3,10 @@ int Main(int count, char ** arguments) { (void)count; - _Alignas(64) game_t game[1] = {0}; char * program_name = arguments[0]; srand(time(NULL)); Root(program_name); - GameInitialize(game, program_name); - GameLoop(game); - GameDeinitialize(game); + GameStart(program_name); return 0; } -- cgit v1.2.3