Add some debugging.

This commit is contained in:
Anna Rose Wiggins 2021-07-23 21:40:46 +00:00
parent dd6f3d528b
commit a795564f95
5 changed files with 22 additions and 2 deletions

16
helicopter/init.ks Normal file
View file

@ -0,0 +1,16 @@
// Main UI.
local interface is gui(250, 300).
set interface:X to 200.
set interface:Y to 700.
// Main menu elements in here.
local y is interface:AddVLayout().
local x is y:AddHLayout().
set x:AddButton("HOVER"):onClick to {
run "hover".
}.
interface:show().
wait until false.