1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Configuration/ScalingMode.cs

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

26 lines
811 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.
2019-01-04 13:18:29 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
using osu.Framework.Localisation;
using osu.Game.Localisation;
2019-01-04 13:18:29 +08:00
2019-01-04 12:29:37 +08:00
namespace osu.Game.Configuration
{
public enum ScalingMode
{
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.Off))]
2019-01-04 12:29:37 +08:00
Off,
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.Everything))]
2019-01-04 12:29:37 +08:00
Everything,
2019-02-28 12:31:40 +08:00
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.ExcludingOverlays))]
2019-01-04 12:29:37 +08:00
ExcludeOverlays,
[LocalisableDescription(typeof(LayoutSettingsStrings), nameof(LayoutSettingsStrings.Gameplay))]
2019-01-04 12:29:37 +08:00
Gameplay,
}
2019-01-04 13:18:29 +08:00
}