Arbiter.GetTeam C# (CSharp) Méthode

GetTeam() public méthode

public GetTeam ( int team ) : Team,
team int
Résultat Team,
    public Team GetTeam(int team)
    {
        if(!Application.isPlaying) { return EditorGetTeam(team); }
        if(_teams == null || _teams.Count == 0) {
            teams = null;
        }
        return teams[team];
    }