Arbiter.IsAllyOf C# (CSharp) Méthode

IsAllyOf() public méthode

public IsAllyOf ( int teamA, int teamB ) : bool
teamA int
teamB int
Résultat bool
    public bool IsAllyOf(int teamA, int teamB)
    {
        return teamA == teamB || GetTeam(teamB).allies.Contains(teamA);
    }