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