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