From 797a3969a9d4e425f94a4688e8c451fcf3dfdfbc Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 6 Aug 2025 18:58:19 +0200 Subject: Renamed tests to examples --- examples/graphics.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 examples/graphics.lua (limited to 'examples/graphics.lua') diff --git a/examples/graphics.lua b/examples/graphics.lua new file mode 100644 index 0000000..2ac5219 --- /dev/null +++ b/examples/graphics.lua @@ -0,0 +1,11 @@ +open_window(800, 800, "My Game") +set_fps(60) + +while window_running() do + begin_drawing() + clear_window(color.BLACK) + draw_info() + end_drawing() +end + +close_window() -- cgit v1.2.3