osu/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);
}
}