osukey/osu.Game/Configuration/ProgressBarType.cs
2016-12-07 09:42:53 -05:00

16 lines
283 B
C#

using System;
using System.ComponentModel;
namespace osu.Game.Configuration
{
public enum ProgressBarType
{
Off,
Pie,
[Description("Top Right")]
TopRight,
[Description("Bottom Right")]
BottomRight,
Bottom
}
}