/// <summary> /// Creates a new team death match tournament. /// </summary> public TeamDeathMatch() : base() { TournamentCollection.Add(this); BlackTeam = new TournamentTeam(this, Black, "Black", 224, 329); WhiteTeam = new TournamentTeam(this, White, "White", 181, 81); BlueTeam = new TournamentTeam(this, Blue, "Blue", 68, 190); RedTeam = new TournamentTeam(this, Red, "Red", 347, 222); }
public async Task Tournaments() { TournamentCollection response = await crest.GetRoot().QueryAsync(r => r.Tournaments); }