kOS/lib/ui.ks

15 lines
195 B
Plaintext
Raw Normal View History

2021-08-02 01:34:14 +00:00
function makeRow {
parameter p.
return p:AddHLayout().
}
function makeButton {
parameter p.
parameter l.
parameter f.
local b is p:AddButton(l).
set b:onClick to f.
return b.
}