osu/osu.Game/Configuration/ScalingMode.cs

17 lines
378 B
C#
Raw Normal View History

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