1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 17:22:58 +08:00
osu-lazer/osu.Game.Tournament/Components/TournamentTeam.cs
2018-09-21 18:18:28 +09:00

30 lines
788 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Tournament.Components
{
public class TournamentTeam
{
/// <summary>
/// The name of this team.
/// </summary>
public string FullName;
/// <summary>
/// Name of the file containing the flag.
/// </summary>
public string FlagName;
private string acronym;
/// <summary>
/// Short acronym which appears in the group boxes post-selection.
/// </summary>
public string Acronym
{
get { return acronym ?? FullName.Substring(0, 3); }
set { acronym = value; }
}
}
}