mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Wire up enum-backed dropdowns
This commit is contained in:
12
osu.Game/Configuration/ScreenshotFormat.cs
Normal file
12
osu.Game/Configuration/ScreenshotFormat.cs
Normal 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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user