starting breakout example
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Sun, 28 Nov 2021 01:18:19 +0000 (19:18 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Sun, 28 Nov 2021 01:18:19 +0000 (19:18 -0600)
tests/breakout.onyx [new file with mode: 0644]

diff --git a/tests/breakout.onyx b/tests/breakout.onyx
new file mode 100644 (file)
index 0000000..ef4c343
--- /dev/null
@@ -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