1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00
osu-lazer/osu.Game/Configuration/ScreenshotFormat.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
539 B
C#
Raw Normal View History

// 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
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
}