osu/osu.Game/Beatmaps/BeatmapStatistic.cs

14 lines
362 B
C#
Raw Normal View History

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