2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-12-02 06:45:31 +08:00
|
|
|
|
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
|
2016-12-02 06:45:31 +08:00
|
|
|
|
[Description("JPG (web-friendly)")]
|
2016-12-02 06:28:20 +08:00
|
|
|
|
Jpg = 1,
|
2016-12-02 06:45:31 +08:00
|
|
|
|
[Description("PNG (lossless)")]
|
2016-12-02 06:28:20 +08:00
|
|
|
|
Png = 2
|
|
|
|
|
}
|
|
|
|
|
}
|