From 1cb7481abf1abaa6c55d41f74e83b56de328c903 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 11 Feb 2021 10:31:15 -0600 Subject: [PATCH] doing work. --- lib/imgui.onyx | 4 ++++ test/basic.onyx | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 test/basic.onyx diff --git a/lib/imgui.onyx b/lib/imgui.onyx index e41bc36..f35030f 100644 --- a/lib/imgui.onyx +++ b/lib/imgui.onyx @@ -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 index 0000000..f867063 --- /dev/null +++ b/test/basic.onyx @@ -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 -- 2.25.1