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();
}
}