Package de.creepsmash.client.grid

Examples of de.creepsmash.client.grid.GameBoard


  public GameContext(BoardLocation location, Network network,
      SoundManagement mSound, IConstants.Map map) {
    this.location = location;
    this.network = network;
    this.mapfile = map;
    this.setGameBoard(new GameBoard(this));
    this.towers = Collections.synchronizedList(new ArrayList<Tower>());
    this.creeps = Collections.synchronizedList(new ArrayList<Creep>());
    this.transfer = Collections.synchronizedList(new ArrayList<Creep>());
    this.contextListeners = new ArrayList<ContextListener>();
    this.managementSound = mSound;
View Full Code Here


  public GameContext(BoardLocation location, Network network,
      IConstants.Map map) {
    this.location = location;
    this.network = network;
    this.mapfile = map;
    this.setGameBoard(new GameBoard(this));
    this.towers = Collections.synchronizedList(new ArrayList<Tower>());
    this.creeps = Collections.synchronizedList(new ArrayList<Creep>());
    this.transfer = Collections.synchronizedList(new ArrayList<Creep>());
    this.contextListeners = new ArrayList<ContextListener>();
    this.managementSound = null;
View Full Code Here

TOP

Related Classes of de.creepsmash.client.grid.GameBoard

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.