mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 00:47:28 +09: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);
|
|
}
|
|
}
|