1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 18:42:54 +08:00
osu-lazer/osu.Game/Screens/Tournament/Team.cs

17 lines
308 B
C#
Raw Normal View History

2017-02-27 13:19:07 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Game.Screens.Tournament
{
public class Team
{
public string FullName;
public string Acronym;
public string FlagName;
}
}