1 package de.jos.game.aspect.plugins; 2 3 import java.util.List; 4 5 import de.jos.game.objects.screen.AbstractGameObject; 6 7 public interface DebugPlugin { 8 9 public List<String> getPluginHelp(); 10 11 public String getPluginHelpCommand(); 12 13 public String getPluginName(); 14 15 public void executeCommand(AbstractGameObject gameObject, String command); 16 17 public boolean possibleCommandMatch(String command); 18 19 }