Arbiter.IsEnemyOf C# (CSharp) Méthode

IsEnemyOf() public méthode

public IsEnemyOf ( int teamA, int teamB ) : bool
teamA int
teamB int
Résultat bool
    public bool IsEnemyOf(int teamA, int teamB)
    {
        return teamA != teamB && GetTeam(teamB).enemies.Contains(teamA);
    }