diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-06 18:58:19 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-06 18:58:19 +0200 |
| commit | 797a3969a9d4e425f94a4688e8c451fcf3dfdfbc (patch) | |
| tree | 183c36e04838d0748771e7ed18c30889a10a7ce2 /examples/graphics.lua | |
| parent | 0f6a57197fbd49de6fb4e16d53f07723fb3a1ecf (diff) | |
| download | bidi-797a3969a9d4e425f94a4688e8c451fcf3dfdfbc.tar.gz | |
Renamed tests to examples
Diffstat (limited to 'examples/graphics.lua')
| -rw-r--r-- | examples/graphics.lua | 11 |
1 files changed, 11 insertions, 0 deletions
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() |
