summaryrefslogtreecommitdiff
path: root/demo/main.lua
blob: e7f95c185c7e3ecb60b8f883062a3166d3ea0793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local fullscreen = false

local a_func = function(action, data)
    if (action == 0) then return end
    fullscreen = not fullscreen
    honey.window.set_fullscreen(fullscreen)
end

local resize_func = function(width, height, data)
    local w, h = honey.window.get_size()
    print('resized!', w, h)
end

honey.window.set_title('honey engine demo')

honey.input.bind_key(honey.input.key.a, a_func)
honey.window.resize_bind(resize_func)

function honey.update(dt)
end

--function honey.draw()
--   print('draw!')
--end