Source of Command.java


  1: 
  2: package maze;
  3: 
  4: public interface Command { 
  5: 
  6:   public void execute(); 
  7: 
  8: }
  9: