1 package org.newdawn.slick.command; 2 3 /** 4 * The description of a action feedback from the abstract input system. This marker allows the 5 * creation of action objects that can contain useful state. If you don't need state and just 6 * a name use <code>BasicCommand</code>. 7 * 8 * @author kevin 9 */ 10 public interface Command { 11 12 /** 13 * 14 * @return name 15 */ 16 String getName(); 17 18 }