mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-19 18:34:49 +01:00
implement the music game
This commit is contained in:
24
proto/MusicGameGetBeatmapRsp.proto
Normal file
24
proto/MusicGameGetBeatmapRsp.proto
Normal file
@@ -0,0 +1,24 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "MusicGameGetBeatmapReqType.proto";
|
||||
import "MusicBeatmap.proto";
|
||||
import "MusicBriefInfo.proto";
|
||||
import "MusicGameUnknown1Enum.proto";
|
||||
|
||||
// CmdId: 6309
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message MusicGameGetBeatmapRsp {
|
||||
int32 retcode = 13;
|
||||
MusicGameUnknown1Enum unknown_enum1 = 1;
|
||||
uint64 music_share_id = 5;
|
||||
MusicGameGetBeatmapReqType req_type = 2;
|
||||
oneof beatmap {
|
||||
MusicBeatmap music_record = 9;
|
||||
}
|
||||
oneof brief_info {
|
||||
MusicBriefInfo music_brief_info = 953;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user