2019-01-04 04:29:37 +00:00
|
|
|
// Copyright (c) 2007-2019 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// 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
|
|
|
|
{
|
2019-01-04 05:18:29 +00:00
|
|
|
|
2019-01-04 04:29:37 +00:00
|
|
|
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
|
|
|
}
|