pico8-0hh1/states/menu.lua

27 lines
453 B
Lua
Raw Normal View History

2022-05-29 18:38:07 +02:00
function stateMenu()
local items = {"play", "rules"}
local buttons = {}
function _enter()
for k,v in ipairs(items) do
local button = makeButton(10, k*10, 30, 6, v, function() printh("click") end)
add(buttons, button)
end
end
return {
_enter = _enter,
_update = function()
for button in all(buttons) do
button:update()
end
end,
_draw = function()
for button in all(buttons) do
button:draw()
end
end
}
end