summaryrefslogtreecommitdiff
path: root/demo/main.lua
blob: 8c0072f95e2bc3b78ad92beb181e65da6d11a10d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
for key, value in pairs(honey.input.key) do
   print(key, value)
end

local total_time = 0

--function honey.update(dt)
--   total_time = total_time + dt
--   print(dt)
--end
--
--function honey.draw()
--   print('draw!')
--end