2021-08-17 15:13:45 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
[Cached]
|
|
|
|
|
public interface ILocalUserPlayInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2024-10-01 16:00:32 +08:00
|
|
|
|
/// Whether the local user is currently interacting (playing) with the game in a way that should not be interrupted.
|
2021-08-17 15:13:45 +08:00
|
|
|
|
/// </summary>
|
2024-10-01 16:00:32 +08:00
|
|
|
|
IBindable<LocalUserPlayingStates> PlayingState { get; }
|
2021-08-17 15:13:45 +08:00
|
|
|
|
}
|
|
|
|
|
}
|