1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 12:07:51 +08:00
osu-lazer/osu.Game/Configuration/ScalingMode.cs

17 lines
378 B
C#
Raw Normal View History

2019-01-04 14:37:27 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2019-01-04 12:29:37 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2019-01-04 13:18:29 +08:00
using System.ComponentModel;
2019-01-04 12:29:37 +08:00
namespace osu.Game.Configuration
{
public enum ScalingMode
{
Off,
Everything,
2019-01-04 13:18:29 +08:00
[Description("Excluding overlays")]
2019-01-04 12:29:37 +08:00
ExcludeOverlays,
Gameplay,
}
2019-01-04 13:18:29 +08:00
}