added C test

This commit is contained in:
2024-06-30 19:09:48 +02:00
committed by T.v.Dein
parent eb95c72538
commit 957db29a37
7 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include "game.h"
#include "raylib.h"
int main(void) {
Game *game = Init(800, 800, 10, 10, 8);
while (!WindowShouldClose()) {
Update(game);
Draw(game);
}
CloseWindow();
free(game);
return 0;
}