Package squaresgame

Examples of squaresgame.GameGrid


   
    //Make the mouse cursor work with in-game objects
    CursorGenerator.setUpCursor();
   
    //Create the logical representation of the game's grid.
    Grid grid = new GameGrid(gridWidth, gridHeight);
   
    //Set up the game controller to manage the turn system, and run in a seperate thread.
    List<Player> players = generatePlayers(numHumanPlayers, numAIPlayers);
    GameControllerGenerator.setUpGameController(grid, players);
   
View Full Code Here

TOP

Related Classes of squaresgame.GameGrid

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.