-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollegeEvent.cs
More file actions
24 lines (22 loc) · 769 Bytes
/
Copy pathCollegeEvent.cs
File metadata and controls
24 lines (22 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Text;
namespace TourneyScoreSystem
{
public class CollegeEvent
{
public string eventTitle;
public int ID;
public bool isTeamEvent;
public List<Team> teams = new List<Team>();
public List<Player> players = new List<Player>();
public Dictionary<int, Player> playerRanking = new Dictionary<int, Player>();
public Dictionary<int, Team> teamRanking = new Dictionary<int, Team>();
public List<(Team, int, int)> teamOrderPoints = new List<(Team, int, int)>();
public List<(Player, int, int)> playerOrderPoints = new List<(Player, int, int)>();
public CollegeEvent(int _ID)
{
ID = _ID;
}
}
}