Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epoxy
GitHub Repository: epoxy/proj11
Path: blob/master/SLICK_HOME/src/org/newdawn/slick/command/Command.java
1456 views
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