LoveFrames/demo/examples/multichoice.lua
2019-03-06 23:19:58 +00:00

21 lines
444 B
Lua

local example = {}
example.title = "Multichoice"
example.category = "Object Demonstrations"
function example.func(loveframes, centerarea)
local frame = loveframes.Create("frame")
frame:SetName("Multichoice")
frame:SetSize(210, 60)
frame:CenterWithinArea(unpack(centerarea))
local multichoice = loveframes.Create("multichoice", frame)
multichoice:SetPos(5, 30)
for i=1, 10 do
multichoice:AddChoice(i)
end
end
return example