/*
 * This is the "main" class.  All it does is instantiate
 * a controller and get the game running.
 */

public class mine {

  public static void main(String [] argv){
    
    GameController control = new GameController();
    control.startGame();
    
  }
}
