mirror of
https://codeberg.org/scip/golsky.git
synced 2025-12-16 20:20:57 +01:00
16 lines
216 B
C
16 lines
216 B
C
#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;
|
|
}
|