summaryrefslogtreecommitdiff
path: root/examples/labyrinth.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-02-02 14:38:13 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-02-02 14:38:13 +0100
commit27b4343c2a7e2583881485a5ac667894fec729f0 (patch)
tree018df2c4df87ef39f9c828a1d6e255825ee7ed9b /examples/labyrinth.c
parentbc9e6042e709b7790f2f130dde08b13c929653b1 (diff)
downloadreduced_system_layer-27b4343c2a7e2583881485a5ac667894fec729f0.zip
Refactor, renaming (work in progress)perf
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;
-}