Refactor boot/os code, add graphical interface, more attempts to fix steering logic.

This commit is contained in:
Anna Rose Wiggins 2021-07-18 19:32:45 -04:00
parent 5cb608ff01
commit 5b9da6f0f1
3 changed files with 38 additions and 13 deletions

13
os/rocketos.ks Normal file
View file

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