Package command

Source Code of command.InvokeAttack

package command;

import pokemon.BattleOverlord;

/**
* @author Josiah_Knoll
* tells the pokemon to attack
*/
public class InvokeAttack implements Command
{
  public InvokeAttack(int number)
  {

  }

  @Override
  public void execute()
  {
    BattleOverlord bg = BattleOverlord.getInstance();
    bg.attack();
  }
}
TOP

Related Classes of command.InvokeAttack

TOP
Copyright © 2018 www.massapi.com. 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.