Esempio n. 1
0
 public bool IsFriendly(Team other)
 {
     return Bits == other.Bits ||
            (Bits & other.Allies) != 0;
 }
Esempio n. 2
0
 public bool Equals(Team other)
 {
     return Bits == other.Bits;
 }