diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-06 18:52:27 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-08-06 18:52:27 +0200 |
| commit | a29577e869ed6fc25ab4ed3c5014f5811cb6215f (patch) | |
| tree | d702ffa36249953d4074d0198f3d84038e1d1df4 /test/graphics.lua | |
| parent | 016a86ac3fe4ff895259cb86d55008691bc5e3c4 (diff) | |
| download | bidi-a29577e869ed6fc25ab4ed3c5014f5811cb6215f.tar.gz | |
Added custom font and refactor some of the code
Diffstat (limited to 'test/graphics.lua')
| -rw-r--r-- | test/graphics.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/graphics.lua b/test/graphics.lua new file mode 100644 index 0000000..2ac5219 --- /dev/null +++ b/test/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() |
