feat(multiplayer): support leaderboard

This commit is contained in:
MingxuanGame
2025-08-06 10:51:37 +00:00
parent 84dac34a05
commit 87bb74d1ca
8 changed files with 411 additions and 7 deletions

View File

@@ -16,12 +16,15 @@ from .lazer_user import (
UserResp,
)
from .playlist_attempts import ItemAttemptsCount
from .playlist_best_score import PlaylistBestScore
from .playlists import Playlist, PlaylistResp
from .pp_best_score import PPBestScore
from .relationship import Relationship, RelationshipResp, RelationshipType
from .room import Room, RoomResp
from .score import (
MultiplayerScores,
Score,
ScoreAround,
ScoreBase,
ScoreResp,
ScoreStatistics,
@@ -47,9 +50,11 @@ __all__ = [
"DailyChallengeStatsResp",
"FavouriteBeatmapset",
"ItemAttemptsCount",
"MultiplayerScores",
"OAuthToken",
"PPBestScore",
"Playlist",
"PlaylistBestScore",
"PlaylistResp",
"Relationship",
"RelationshipResp",
@@ -57,6 +62,7 @@ __all__ = [
"Room",
"RoomResp",
"Score",
"ScoreAround",
"ScoreBase",
"ScoreResp",
"ScoreStatistics",