public static ArrayList<Fighter> getAOE_Players(Rectangle bounds) { ArrayList<Fighter> both = new ArrayList<Fighter>(); both.addAll(getAOE_Players(GameMatch.getTEAM1(), bounds)); both.addAll(getAOE_Players(GameMatch.getTEAM1(), bounds)); return both; }
public static boolean dealAOE_enemy(int team, Rectangle bounds, float aoe, Buff[] buffs) { return dealAOE_players(GameMatch.getEnemyTeamID(team), bounds, aoe, buffs); }