1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 11:57:24 +08:00
osu-lazer/osu.Game/Configuration/ScreenshotFormat.cs

16 lines
398 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
2016-12-02 06:28:20 +08:00
namespace osu.Game.Configuration
{
public enum ScreenshotFormat
{
[Description("JPG (web-friendly)")]
2016-12-02 06:28:20 +08:00
Jpg = 1,
[Description("PNG (lossless)")]
2016-12-02 06:28:20 +08:00
Png = 2
}
2018-01-05 19:21:19 +08:00
}