mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 02:54:04 +09:00
Former-commit-id: d04fc939a659fc4a6b952d64894bd28edf97bc38 Former-commit-id: 6c20526f3bdda2d9d08dc156b3b0fe271e89bffb
16 lines
247 B
Kotlin
16 lines
247 B
Kotlin
package net.torvald.terrarum.console
|
|
|
|
/**
|
|
* Created by minjaesong on 16-01-15.
|
|
*/
|
|
internal object QuitApp : ConsoleCommand {
|
|
|
|
override fun execute(args: Array<String>) {
|
|
System.exit(1)
|
|
}
|
|
|
|
override fun printUsage() {
|
|
|
|
}
|
|
}
|