mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-12 11:34:05 +09:00
19 lines
299 B
Kotlin
19 lines
299 B
Kotlin
package net.torvald.terrarum.console
|
|
|
|
import com.badlogic.gdx.Gdx
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-01-15.
|
|
*/
|
|
@ConsoleAlias("qqq")
|
|
internal object QuitApp : ConsoleCommand {
|
|
|
|
override fun execute(args: Array<String>) {
|
|
Gdx.app.exit()
|
|
}
|
|
|
|
override fun printUsage() {
|
|
|
|
}
|
|
}
|