Files
osukey/osu.Game.Tournament/Screens/Ladder/Components/LadderInfo.cs
2018-09-21 18:18:28 +09:00

10 lines
206 B
C#

using System.Collections.Generic;
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class LadderInfo
{
public List<MatchPairing> Pairings = new List<MatchPairing>();
}
}