mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:37:51 +08:00
16 lines
478 B
C#
16 lines
478 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
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
|
|
}
|
|
} |