Package commands.market

Examples of commands.market.BuyTower


  /**
   *  Buy the given tower (by adding the command in the Engine)
   *
   */
  public void buyTower(Player player, String type, int x, int y) {
    BuyTower buyTower = new BuyTower(player, type, x, y);
    Engine.getInstance().getCommands().add(buyTower);
  }
View Full Code Here

TOP

Related Classes of commands.market.BuyTower

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.