1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-02 01:17:24 +08:00
osu-lazer/osu.Game/Screens/Tournament/Teams/Team.cs

24 lines
657 B
C#
Raw Normal View History

2017-03-03 12:17:24 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-03 19:42:22 +08:00
namespace osu.Game.Screens.Tournament.Teams
2017-02-27 13:19:07 +08:00
{
public class Team
{
2017-03-03 19:08:21 +08:00
/// <summary>
/// The name of this team.
/// </summary>
2017-02-27 13:19:07 +08:00
public string FullName;
2017-03-03 19:08:21 +08:00
/// <summary>
/// Short acronym which appears in the group boxes post-selection.
/// </summary>
2017-02-27 13:19:07 +08:00
public string Acronym;
2017-03-03 19:08:21 +08:00
/// <summary>
/// Two-letter flag acronym (ISO 3166 standard)
/// </summary>
2017-02-27 13:19:07 +08:00
public string FlagName;
}
}