mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-11 19:14:05 +09:00
Former-commit-id: 375604da8a20a6ba7cd0a8d05a44add02b2d04f4 Former-commit-id: 287287c5920b07618174d7a7573f049d350ded66
13 lines
203 B
Kotlin
13 lines
203 B
Kotlin
package net.torvald.terrarum.console
|
|
|
|
/**
|
|
* Created by minjaesong on 16-01-15.
|
|
*/
|
|
interface ConsoleCommand {
|
|
|
|
@Throws(Exception::class)
|
|
fun execute(args: Array<String>)
|
|
|
|
fun printUsage()
|
|
|
|
} |