コード例 #1
0
ファイル: SOSFireZoneManager.java プロジェクト: jpollo/rcrss
 private void checkEstimator(SOSEstimatedFireZone second) {
   if (second.isEstimating()) return;
   for (Building b : second.getAllBuildings()) {
     if (b.isBurning()) {
       second.setEstimating(true);
       return;
     }
   }
 }