mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-18 22:44:04 +09:00
- "unpacking" fresh new tool would un-register quickslot desig. - priority issue on "equipped by quickslot change" and "equipped by inventory UI"
18 lines
324 B
Kotlin
18 lines
324 B
Kotlin
package net.torvald.terrarum.console
|
|
|
|
/**
|
|
* Created by minjaesong on 16-01-15.
|
|
*/
|
|
interface ConsoleCommand {
|
|
|
|
/**
|
|
* Args 0: command given
|
|
* Args 1: first argument
|
|
*
|
|
* e.g. in ```setav mass 74```, zeroth args will be ```setav```.
|
|
*/
|
|
fun execute(args: Array<String>)
|
|
|
|
fun printUsage()
|
|
|
|
} |