summaryrefslogtreecommitdiff
path: root/examples/labyrinth.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/labyrinth.c')
-rw-r--r--examples/labyrinth.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/labyrinth.c b/examples/labyrinth.c
deleted file mode 100644
index 01af7c6..0000000
--- a/examples/labyrinth.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 = "Labyrinth",
- };
-
- p_event_loop();
-
- return 0;
-}