Package es.mahulo.battleship.model

Examples of es.mahulo.battleship.model.GameConfig


   
    logger.debug("user found: " + user);

    Game game = new Game();

    GameConfig gameConfig = gameConfigDao.find(1L); //TODO DEFINE A TABLE DEFAULT CONFIGURATION
   
    List<Player> players = new ArrayList<Player>();
   
    Player player = new Player();
    player.setUser(user);
View Full Code Here


    shipConfig5.setNumber(2);
    shipConfig5.setSize(1);
    shipConfigs.add(shipConfig5);
   
   
    gameConfig = new GameConfig();
    gameConfig.setDimensionX(10);
    gameConfig.setDimensionY(10);
    gameConfig.setShipConfigs(shipConfigs);
   
   
View Full Code Here

    shipConfig5.setSize(1);
    shipConfigs.add(shipConfig5);
   
   
   
    gameConfig = new GameConfig();
    gameConfig.setId(1L);
    gameConfig.setDimensionX(10);
    gameConfig.setDimensionY(10);
    gameConfig.setShipConfigs(shipConfigs);
   
View Full Code Here

TOP

Related Classes of es.mahulo.battleship.model.GameConfig

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.