Added some info and started command stuff a little

This commit is contained in:
sekwah 2018-01-19 02:39:39 +00:00
parent 854c06eba3
commit b508e7e0cc
2 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,12 @@ public interface CommandTemplate {
void onCommand(CommandHandler sender, String[] args);
/**
* Fired when someone asks for a tab complete action.
* @param sender
* @param args
* @return
*/
List<String> onTabComplete(CommandHandler sender, String[] args);
}

View File

@ -0,0 +1,4 @@
package com.sekwah.advancedportals.core.commands;
public class PortalCommand {
}