mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 05:57:29 +08:00
15 lines
354 B
C#
15 lines
354 B
C#
|
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);
|
||
|
}
|
||
|
}
|