From 225167461d754b476b4fcc7726c492cc972ca654 Mon Sep 17 00:00:00 2001 From: sanine-a Date: Sun, 18 Oct 2020 12:10:48 -0500 Subject: clear out old files, add basic scripting --- demo/main.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 demo/main.lua (limited to 'demo') 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 -- cgit v1.2.1