1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-11 14:37:18 +08:00

17 lines
308 B
C#
Raw Normal View History

2017-02-27 14:19:07 +09: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;
}
}