mirror of
https://github.com/ppy/osu
synced 2025-03-03 01:49:46 +00:00
14 lines
346 B
C#
14 lines
346 B
C#
|
using System.Threading.Tasks;
|
||
|
using osu.Game.Online.Spectator;
|
||
|
|
||
|
namespace osu.Server.Spectator.Hubs
|
||
|
{
|
||
|
public interface ISpectatorClient
|
||
|
{
|
||
|
Task UserBeganPlaying(string userId, int beatmapId);
|
||
|
|
||
|
Task UserFinishedPlaying(string userId, int beatmapId);
|
||
|
|
||
|
Task UserSentFrames(string userId, FrameDataBundle data);
|
||
|
}
|
||
|
}
|