Implement decent command handling

This commit is contained in:
dfsek
2020-10-01 02:16:54 -07:00
parent 215b30e611
commit f7f98b6dcc
20 changed files with 363 additions and 83 deletions

View File

@@ -20,6 +20,11 @@ public class SaveDataCommand extends Command {
return true;
}
@Override
public int arguments() {
return 0;
}
@Override
public List<Command> getSubCommands() {
return Collections.emptyList();