This commit is contained in:
2021-12-29 01:07:57 +01:00
commit 337a85cc77
4 changed files with 152 additions and 0 deletions

17
lib.ks Normal file
View File

@@ -0,0 +1,17 @@
global function include {
parameter srcpath.
print "Loading " + srcpath + "...".
copypath("0:/" + srcpath, "1:/" + srcpath).
runpath("1:/" + srcpath).
}
global function pause {
parameter msg.
print msg.
wait until terminal:input:getchar() = terminal:input:enter.
}
global function release {
unlock steering.
unlock throttle.
}