1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 22:07:27 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/Components/GroupingBeatmap.cs

16 lines
374 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps;
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class GroupingBeatmap
{
public int ID;
public string Mods;
public BeatmapInfo BeatmapInfo;
}
}