Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,19 @@
case MatchmakingAvatarActionRequest avatarAction:
await hub.NotifyNewMatchEvent(room, new MatchmakingAvatarActionEvent
{
UserId = user.UserID,

Check failure on line 148 in osu.Server.Spectator/Hubs/Multiplayer/Matchmaking/MatchmakingMatchController.cs

View workflow job for this annotation

GitHub Actions / Unit testing

The type or namespace name 'MatchmakingCursorPositionRequest' could not be found (are you missing a using directive or an assembly reference?)
Action = avatarAction.Action

Check failure on line 149 in osu.Server.Spectator/Hubs/Multiplayer/Matchmaking/MatchmakingMatchController.cs

View workflow job for this annotation

GitHub Actions / Unit testing

The type or namespace name 'MatchmakingCursorPositionEvent' could not be found (are you missing a using directive or an assembly reference?)
});
break;

case MatchmakingCursorPositionRequest cursorPosition:
await hub.NotifyNewMatchEvent(room, new MatchmakingCursorPositionEvent
{
UserId = user.UserID,
X = cursorPosition.X,
Y = cursorPosition.Y,
});
break;
}
}

Expand Down
Loading