// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Mobile { public enum GameOrientation { /// /// Lock the game orientation. /// Locked, /// /// Display the game in regular portrait orientation. /// Portrait, /// /// Display the game in landscape-right orientation. /// Landscape, /// /// Display the game in landscape-right/landscape-left orientations. /// FullLandscape, /// /// Display the game in portrait/portrait-upside-down orientations. /// This is exclusive to tablet mobile devices. /// FullPortrait, } }