mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:57:36 +08:00
12 lines
307 B
C#
12 lines
307 B
C#
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
|
|
}
|
|
} |