scripted-engine/src/logic/wren/module/os.wren

14 lines
273 B
Plaintext

class Platform {
foreign static isPosix
foreign static name
static isWindows { name == "Windows" }
}
class Process {
// TODO: This will need to be smarter when wren supports CLI options.
static arguments { allArguments[2..-1] }
foreign static allArguments
}