mirror of
https://github.com/osukey/osukey.git
synced 2025-05-09 07:37:22 +09:00
24 lines
761 B
C#
24 lines
761 B
C#
// Copyright (c) 2007-2019 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
namespace osu.Game.Screens
|
|
{
|
|
public interface IOsuScreen : IScreen
|
|
{
|
|
/// <summary>
|
|
/// Whether the beatmap or ruleset should be allowed to be changed by the user or game.
|
|
/// Used to mark exclusive areas where this is strongly prohibited, like gameplay.
|
|
/// </summary>
|
|
bool AllowBeatmapRulesetChange { get; }
|
|
|
|
bool AllowExternalScreenChange { get; }
|
|
|
|
/// <summary>
|
|
/// Whether this <see cref="OsuScreen"/> allows the cursor to be displayed.
|
|
/// </summary>
|
|
bool CursorVisible { get; }
|
|
}
|
|
}
|