1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 05:57:29 +08:00
osu-lazer/osu.Game/Online/Spectator/ISpectatorServer.cs

15 lines
354 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace osu.Game.Online.Spectator
{
public interface ISpectatorServer
{
Task BeginPlaySession(int beatmapId);
Task SendFrameData(FrameDataBundle data);
Task EndPlaySession(int beatmapId);
Task StartWatchingUser(string userId);
Task EndWatchingUser(string userId);
}
}