mirror of
https://github.com/osukey/osukey.git
synced 2025-05-20 13:07:21 +09: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);
|
|
}
|
|
} |