2019-01-24 17:43:03 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2016-12-01 17:45:31 -05:00
|
|
|
|
using System.ComponentModel;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2016-12-01 17:28:20 -05:00
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
|
{
|
|
|
|
|
public enum ScreenshotFormat
|
|
|
|
|
{
|
2016-12-01 17:45:31 -05:00
|
|
|
|
[Description("JPG (web-friendly)")]
|
2016-12-01 17:28:20 -05:00
|
|
|
|
Jpg = 1,
|
2019-02-28 13:31:40 +09:00
|
|
|
|
|
2016-12-01 17:45:31 -05:00
|
|
|
|
[Description("PNG (lossless)")]
|
2016-12-01 17:28:20 -05:00
|
|
|
|
Png = 2
|
|
|
|
|
}
|
2018-01-05 20:21:19 +09:00
|
|
|
|
}
|