diff options
Diffstat (limited to 'examples/game_of_life.c')
-rw-r--r-- | examples/game_of_life.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/game_of_life.c b/examples/game_of_life.c deleted file mode 100644 index d95fb9e..0000000 --- a/examples/game_of_life.c +++ /dev/null @@ -1,20 +0,0 @@ -#include "../reduced_system_layer.c" - -void update_and_render_frame(void) { - p_handle_events(); - p_render_frame(); - p_sleep_for(0); -} - -i32 main(i32 argc, c8 **argv) { - (void) argc; - (void) argv; - - g_platform = (Platform) { - .title = "Conway's Game of Life", - }; - - p_event_loop(); - - return 0; -} |