1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Configuration/ScreenshotFormat.cs

14 lines
339 B
C#
Raw Normal View History

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