1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 19:07:19 +08:00

18 lines
378 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 14:18:29 +09:00
using System.ComponentModel;
2019-01-04 13:29:37 +09:00
namespace osu.Game.Configuration
{
public enum ScalingMode
{
Off,
Everything,
2019-02-28 13:31:40 +09:00
2019-01-04 14:18:29 +09:00
[Description("Excluding overlays")]
2019-01-04 13:29:37 +09:00
ExcludeOverlays,
Gameplay,
}
2019-01-04 14:18:29 +09:00
}