blob: afc94d2f01d232e8e8349764598672407041f6ea (
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
|