Britbot

Definition at line 155 of file SimulatedGroup.cs.

        {
            unchecked
            {
                int hashCode = this.Id;
                hashCode = (hashCode * 397) ^ this.Owner;
                hashCode = (hashCode * 397) ^ this.FirePower.GetHashCode();
                hashCode = (hashCode * 397) ^ this.IsAlive.GetHashCode();
                hashCode = (hashCode * 397) ^ this.ReviveTurn;
                return hashCode;
            }
        }