1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-24 03:42:55 +08:00
osu-lazer/osu.Game/Mobile/GameOrientation.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
922 B
C#
Raw Normal View History

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