Beispiel #1
0
 public bool OnBurf(BurfType status)
 {
     foreach (var iter in burf)
     {
         if ((iter.Type & status) > 0)
         {
             return(true);
         }
     }
     return(false);
 }
Beispiel #2
0
 public BurfStructure(BurfType type, int turn, double factor)
 {
     Type   = type;
     Turn   = turn;
     Factor = factor;
 }