summaryrefslogtreecommitdiff
path: root/JGUI/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'JGUI/main.lua')
-rw-r--r--JGUI/main.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/JGUI/main.lua b/JGUI/main.lua
new file mode 100644
index 0000000..93fea92
--- /dev/null
+++ b/JGUI/main.lua
@@ -0,0 +1,19 @@
+local JGUI = require("JGUI")
+
+function jin.core.onLoad()
+
+end
+
+function jin.core.onEvent(e)
+ if e.type == "quit" then
+ jin.core.stop()
+ end
+end
+
+function jin.core.onUpdate()
+
+end
+
+function jin.core.onDraw()
+
+end