1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:07:25 +08:00
osu-lazer/osu.Game/Beatmaps/BeatmapStatistic.cs

15 lines
364 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-04-17 16:43:48 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Graphics;
2017-09-18 21:32:49 +08:00
namespace osu.Game.Beatmaps
2017-04-17 16:43:48 +08:00
{
public class BeatmapStatistic
{
public FontAwesome Icon;
public string Content;
public string Name;
}
2018-01-05 19:21:19 +08:00
}