Archived
0

implement import systems from eddb

This commit is contained in:
Mo
2016-11-09 15:34:42 +03:00
parent 595f2fe1d5
commit f728fbd699
14 changed files with 561 additions and 21 deletions

View File

@@ -3,11 +3,11 @@ package ru.trader.core;
public enum POWER_STATE {
CONTROL, EXPLOITED, EXPANSION, NONE, CONTESTED, HEADQUARTERS, BLOCKED, TURMOIL;
boolean isControl(){
public boolean isControl(){
return this == CONTROL || this == HEADQUARTERS || this == TURMOIL;
}
boolean isExploited(){
public boolean isExploited(){
return this == EXPLOITED || this == BLOCKED;
}
}