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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-08-17 15:13:45 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
{
|
|
|
|
[Cached]
|
|
|
|
public interface ILocalUserPlayInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Whether the local user is currently playing.
|
|
|
|
/// </summary>
|
2021-08-17 15:22:12 +08:00
|
|
|
IBindable<bool> IsPlaying { get; }
|
2021-08-17 15:13:45 +08:00
|
|
|
}
|
|
|
|
}
|