osukey/osu.Game/Configuration/ProgressBarType.cs
2017-02-07 13:52:19 +09:00

16 lines
295 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
}
}