Package squaresgame

Examples of squaresgame.GameController$LinePlacedEvent


  private static Thread gameThread;

  public static void setUpGameController(Grid g, List<Player> players){
    TurnCounter tc = new TurnCounter(players);

    controller = new GameController(tc, g);
    gameThread = new Thread(controller);
    gameThread.start();
  }
View Full Code Here

TOP

Related Classes of squaresgame.GameController$LinePlacedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.