mirror of
https://github.com/ppy/osu
synced 2025-02-10 15:17:32 +00:00
17 lines
478 B
C#
17 lines
478 B
C#
// 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.Timing;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Multiplayer.Spectate
|
|
{
|
|
public interface IMultiplayerSpectatorSyncManager
|
|
{
|
|
IAdjustableClock Master { get; }
|
|
|
|
void AddSlave(IMultiplayerSpectatorSlaveClock clock);
|
|
|
|
void RemoveSlave(IMultiplayerSpectatorSlaveClock clock);
|
|
}
|
|
}
|