summaryrefslogtreecommitdiff
path: root/demo/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'demo/main.lua')
-rw-r--r--demo/main.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/demo/main.lua b/demo/main.lua
new file mode 100644
index 0000000..3ec95cb
--- /dev/null
+++ b/demo/main.lua
@@ -0,0 +1,11 @@
+for key, value in pairs(honey.input.key) do
+ print(key, value)
+end
+
+function honey.update(dt)
+ print(dt)
+end
+
+function honey.draw()
+ print('draw!')
+end