osu/osu.Game/Configuration/ScreenshotFormat.cs

12 lines
307 B
C#
Raw Normal View History

2016-12-01 22:28:20 +00:00
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
}
}