1 2 3 4 5 6 7 8 9 10 11
package net.tylermurphy.Minecraft.Command; import java.util.List; public interface ICommand { public void invoke(List<String> args); public String getInvoke(); }