mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 13:17:22 +09:00
15 lines
253 B
C#
15 lines
253 B
C#
using System;
|
|
|
|
namespace osu.Game.Configuration
|
|
{
|
|
public enum ProgressBarType
|
|
{
|
|
Off,
|
|
Pie,
|
|
[DisplayName("Top Right")]
|
|
TopRight,
|
|
[DisplayName("Bottom Right")]
|
|
BottomRight,
|
|
Bottom
|
|
}
|
|
} |