summaryrefslogtreecommitdiff
path: root/src/main/ICommand.java
blob: 14419a2178a00d9d9000a1c115cc83bf8a43e7b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main;

/**
 * The standard interface for any command
 *
 * @author Maurice Laveaux
 */
public interface ICommand {

    /**
     * Execute all the steps to complete this Command.
     */
    public void execute();
}