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
|
|
|
|
|
2022-08-08 01:11:15 +10:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2016-12-01 17:28:20 -05:00
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
|
{
|
|
|
|
|
public enum ScreenshotFormat
|
|
|
|
|
{
|
2022-08-08 22:06:23 +10:00
|
|
|
|
[LocalisableDescription(typeof(GraphicsSettingsStrings), nameof(GraphicsSettingsStrings.Jpg))]
|
2016-12-01 17:28:20 -05:00
|
|
|
|
Jpg = 1,
|
2019-02-28 13:31:40 +09:00
|
|
|
|
|
2022-08-08 22:06:23 +10:00
|
|
|
|
[LocalisableDescription(typeof(GraphicsSettingsStrings), nameof(GraphicsSettingsStrings.Png))]
|
2016-12-01 17:28:20 -05:00
|
|
|
|
Png = 2
|
|
|
|
|
}
|
2018-01-05 20:21:19 +09:00
|
|
|
|
}
|