Wire up enum-backed dropdowns

This commit is contained in:
Drew DeVault
2016-12-01 17:28:20 -05:00
parent 0378de8346
commit 4757a1c433
14 changed files with 131 additions and 22 deletions

View File

@ -0,0 +1,12 @@
using System;
namespace osu.Game.Configuration
{
public enum ScreenshotFormat
{
Bmp = 0, // TODO: Figure out the best way to hide this from the dropdown
[DisplayName("JPG (web-friendly)")]
Jpg = 1,
[DisplayName("PNG (lossless)")]
Png = 2
}
}