1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-18 23:02:55 +08:00
osu-lazer/osu.Game.Tournament/Components/TournamentTeam.cs

47 lines
1.2 KiB
C#
Raw Normal View History

2019-03-04 12:24:19 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2018-10-16 15:07:59 +08:00
using System;
using System.Collections.Generic;
2018-10-16 15:07:59 +08:00
using Newtonsoft.Json;
using osu.Game.Users;
2018-08-26 00:24:19 +08:00
namespace osu.Game.Tournament.Components
2018-04-13 17:19:50 +08:00
{
2018-10-16 15:07:59 +08:00
[Serializable]
public class TournamentTeam
2018-04-13 17:19:50 +08:00
{
/// <summary>
/// The name of this team.
/// </summary>
public string FullName;
private string flagName;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Name of the file containing the flag.
2018-04-13 17:19:50 +08:00
/// </summary>
public string FlagName
{
2019-03-02 12:52:56 +08:00
get => flagName ?? Acronym?.Substring(0, 2);
set => flagName = value;
}
private string acronym;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Short acronym which appears in the group boxes post-selection.
2018-04-13 17:19:50 +08:00
/// </summary>
public string Acronym
{
2019-03-02 12:52:56 +08:00
get => acronym ?? FullName?.Substring(0, 3);
set => acronym = value;
}
2018-10-16 15:07:59 +08:00
[JsonProperty]
public List<User> Players { get; set; } = new List<User>();
2018-09-22 04:52:25 +08:00
public override string ToString() => FullName ?? Acronym;
2018-04-13 17:19:50 +08:00
}
}