add GetGameMusicScoreApi handler

This commit is contained in:
2025-04-02 04:35:14 +08:00
parent f4b9f48ed6
commit 6b1b607db0

View File

@ -22,4 +22,15 @@ class Mai2Prism(Mai2BuddiesPlus):
return {
"user_id": data["userId"],
"userItemList": []
}
}
#seems to be used for downloading music scores online
async def handle_get_game_music_score_api_request(self, data: Dict) -> Dict:
return {
"gameMusicScore": {
"musicId": data["musicId"],
"level": data["level"],
"type": data["type"],
"scoreData": ""
}
}