package Minesweeper

/**
 * The user input mode corresponding to the user wanting to Check  
 * one of the Squares. It overrides the clickMe() method.
 *   
@version   Sat Mar  7 18:30:35 1998
@author 
 */
public class ModeCheck extends UserMode {

  public void clickMe(Square square) {
    if (square != null) square.Check();
    else
      System.err.println("ERROR: null Square passed in to ModeCheck");
  }

}
