Source of
Command.java
Structures and functions
1:
2:
package maze;
3:
4:
public interface Command {
5:
6:
public void execute()
;
7:
8:
}
9: