Package controller.commands

Examples of controller.commands.Trade


  public void actionPerformed(ActionEvent e) {
    //Should display all item to screen.
    //Player will click item from screen and then return the number of item.
    Character ally = map.getSelectedAlly();
    Character tradeToAlly = map.getTradeOrHealAlly();
    Trade trading = new Trade();
    trading.execute(ally, tradeToAlly);
  }
View Full Code Here

TOP

Related Classes of controller.commands.Trade

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.