Make Team not inherit Country.

This commit is contained in:
smoogipooo 2017-05-02 16:54:43 +09:00
parent ee0a5409bb
commit e2620e2840

View File

@ -5,11 +5,21 @@ using osu.Game.Users;
namespace osu.Game.Screens.Tournament.Teams namespace osu.Game.Screens.Tournament.Teams
{ {
public class Team : Country public class Team
{ {
/// <summary>
/// The name of this team.
/// </summary>
public string FullName;
/// <summary> /// <summary>
/// Short acronym which appears in the group boxes post-selection. /// Short acronym which appears in the group boxes post-selection.
/// </summary> /// </summary>
public string Acronym; public string Acronym;
/// <summary>
/// Name of the file containing the flag.
/// </summary>
public string FlagName;
} }
} }