summaryrefslogtreecommitdiff
path: root/demo/main.lua
blob: 9cae1654a05637ab8411047c5a809b9dd75ca28b (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
25
26
27
28
29
30
31
32
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)


local focus_func = function(focus)
    print('focus:', focus)
end

honey.window.focus_bind(focus_func)
    

function honey.update(dt)
end

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