mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 20:57:28 +09:00
16 lines
283 B
C#
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
|
|
}
|
|
} |