diff options
Diffstat (limited to 'demo')
-rw-r--r-- | demo/main.lua | 11 |
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 |