This commit is contained in:
Anuken 2020-10-13 16:13:18 -04:00
parent 5d76dd0e2f
commit b1acc90739
2 changed files with 0 additions and 8 deletions

View File

@ -83,10 +83,6 @@ public class Team implements Comparable<Team>{
return state.rules.teams.get(this);
}
//public Team[] enemies(){
// return state.teams.enemiesOf(this);
//}
public TeamData data(){
return state.teams.get(this);
}

View File

@ -45,10 +45,6 @@ public class Teams{
return Geometry.findClosest(x, y, get(team).cores);
}
//public Team[] enemiesOf(Team team){
// return get(team).enemies;
//}
public boolean eachEnemyCore(Team team, Boolf<CoreBuild> ret){
for(TeamData data : active){
if(areEnemies(team, data.team)){