kOS/os/rocketos.ks

14 lines
253 B
Plaintext
Raw Normal View History

function launchButtonPressed {
run "launch".
}
// Button panel
local interface is gui(200).
// Launch button
local launchButton is interface:addbutton("Launch").
set launchButton:onClick to launchButtonPressed@.
interface:show().
wait until false.