doing work.
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Thu, 11 Feb 2021 16:31:15 +0000 (10:31 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Thu, 11 Feb 2021 16:31:15 +0000 (10:31 -0600)
lib/imgui.onyx
test/basic.onyx [new file with mode: 0644]

index e41bc36965ca3f632c9440be4b29e431962891a3..f35030f49bb2a6cb2d0a240c4adb8f24ab3cb03f 100644 (file)
@@ -8,6 +8,10 @@
 //  - TTF file loading and prerendering to a texture map
 //  - More things I can't think of at the moment
 
+// Something to consider is that there are two major use cases for a library like this. Either,
+// someone will create an application from scratch, or they will integrate it into their existing
+// code. This library should make both of those situations easy to manage.
+
 // I don't want to plan this too much. I want to just dive in and get working on it.
 
 package imgui
diff --git a/test/basic.onyx b/test/basic.onyx
new file mode 100644 (file)
index 0000000..f867063
--- /dev/null
@@ -0,0 +1,11 @@
+#load "core/std"
+#load "lib/imgui"
+
+use package core
+use package imgui as imgui
+
+
+
+main :: (args: [] cstr) {
+    println("Hey! We got here!");
+}
\ No newline at end of file