osu/osu.Game/Screens/Tournament/Team.cs

17 lines
308 B
C#
Raw Normal View History

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