From e2620e2840d33312be919b4be23d939f3f61737f Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Tue, 2 May 2017 16:54:43 +0900 Subject: [PATCH] Make Team not inherit Country. --- osu.Game/Screens/Tournament/Teams/Team.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/osu.Game/Screens/Tournament/Teams/Team.cs b/osu.Game/Screens/Tournament/Teams/Team.cs index 8da5cfa69e..cfb35d58f2 100644 --- a/osu.Game/Screens/Tournament/Teams/Team.cs +++ b/osu.Game/Screens/Tournament/Teams/Team.cs @@ -5,11 +5,21 @@ using osu.Game.Users; namespace osu.Game.Screens.Tournament.Teams { - public class Team : Country + public class Team { + /// + /// The name of this team. + /// + public string FullName; + /// /// Short acronym which appears in the group boxes post-selection. /// public string Acronym; + + /// + /// Name of the file containing the flag. + /// + public string FlagName; } }