Add letterbox/screen scaling support

This commit is contained in:
Dean Herbert
2019-01-04 13:29:37 +09:00
parent 2fc10cb2bd
commit 3953f829c8
11 changed files with 228 additions and 31 deletions

View File

@ -0,0 +1,12 @@
// Copyright (c) 2007-2019 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Configuration
{
public enum ScalingMode
{
Off,
Everything,
ExcludeOverlays,
Gameplay,
}
}