Add DisplayName

This commit is contained in:
Drew DeVault
2016-12-01 16:45:43 -05:00
parent 9daf524120
commit 0378de8346
4 changed files with 25 additions and 3 deletions

View File

@ -1,11 +1,14 @@
using System;
using System;
namespace osu.Game.Configuration
{
public enum ProgressBarType
{
Off,
Pie,
[DisplayName("Top Right")]
TopRight,
[DisplayName("Bottom Right")]
BottomRight,
Bottom
}