osu/osu.Game.Tournament/Components/TournamentTeam.cs

41 lines
1.0 KiB
C#
Raw Normal View History

2018-04-13 09:19:50 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using osu.Game.Users;
2018-08-25 16:24:19 +00:00
namespace osu.Game.Tournament.Components
2018-04-13 09:19:50 +00:00
{
public class TournamentTeam
2018-04-13 09:19:50 +00:00
{
/// <summary>
/// The name of this team.
/// </summary>
public string FullName;
private string flagName;
2018-04-13 09:19:50 +00:00
/// <summary>
/// Name of the file containing the flag.
2018-04-13 09:19:50 +00:00
/// </summary>
public string FlagName
{
get { return flagName ?? Acronym.Substring(0, 2); }
set { flagName = value; }
}
private string acronym;
2018-04-13 09:19:50 +00:00
/// <summary>
/// Short acronym which appears in the group boxes post-selection.
2018-04-13 09:19:50 +00:00
/// </summary>
public string Acronym
{
get { return acronym ?? FullName.Substring(0, 3); }
set { acronym = value; }
}
public List<User> Players { get; set; }
2018-04-13 09:19:50 +00:00
}
}