From c53d4a863c48ed98f3286876d1c3109f45d40de1 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Sat, 27 Nov 2021 19:18:19 -0600 Subject: [PATCH] starting breakout example --- tests/breakout.onyx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/breakout.onyx diff --git a/tests/breakout.onyx b/tests/breakout.onyx new file mode 100644 index 0000000..ef4c343 --- /dev/null +++ b/tests/breakout.onyx @@ -0,0 +1,15 @@ +#load "./../misc/onyx/qhb" + +use package core + +load :: () { + +} + +update :: (dt: f32) { + +} + +draw :: () { + hb.graphics.print("Hello, breakout!", 100, 100); +} \ No newline at end of file -- 2.25.1