Archived
0

remove population summ, improve total CC compute

This commit is contained in:
Mo
2016-12-04 13:39:33 +03:00
parent 506536c51b
commit 9428215731
5 changed files with 21 additions and 20 deletions

View File

@@ -10,4 +10,12 @@ public enum POWER_STATE {
public boolean isExploited(){
return this == EXPLOITED || this == BLOCKED;
}
public boolean isExpansion(){
return this == EXPANSION;
}
public boolean isContested(){
return this == CONTESTED;
}
}