mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
14 lines
339 B
C#
14 lines
339 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
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)")]
|
|
Jpg = 1,
|
|
[Description("PNG (lossless)")]
|
|
Png = 2
|
|
}
|
|
} |