Oops, missed the UI library.

This commit is contained in:
Anna Rose 2021-08-01 21:34:14 -04:00
parent 4da7d50167
commit 8c0c1227e9

14
lib/ui.ks Normal file
View File

@ -0,0 +1,14 @@
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.
}