Add some debugging.
This commit is contained in:
parent
dd6f3d528b
commit
a795564f95
5 changed files with 22 additions and 2 deletions
16
helicopter/init.ks
Normal file
16
helicopter/init.ks
Normal 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.
|
Loading…
Add table
Add a link
Reference in a new issue