mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-08-03 02:50:13 +03:00
Update 3.3 (wow, a lot changed)
This commit is contained in:
@@ -19,22 +19,28 @@ syntax = "proto3";
|
||||
|
||||
import "RecordUsage.proto";
|
||||
import "UgcMusicBriefInfo.proto";
|
||||
import "UgcMusicRecord.proto";
|
||||
import "UgcType.proto";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
// CmdId: 6318
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message GetUgcRsp {
|
||||
uint64 ugc_guid = 15;
|
||||
UgcType ugc_type = 10;
|
||||
int32 retcode = 2;
|
||||
RecordUsage ugc_record_usage = 14;
|
||||
// enum CmdId {
|
||||
// option allow_alias = true;
|
||||
// NONE = 0;
|
||||
// CMD_ID = 6341;
|
||||
// ENET_CHANNEL_ID = 0;
|
||||
// ENET_IS_RELIABLE = 1;
|
||||
// }
|
||||
|
||||
int32 retcode = 10;
|
||||
RecordUsage ugc_record_usage = 5;
|
||||
UgcType ugc_type = 6;
|
||||
uint64 ugc_guid = 3;
|
||||
oneof record {
|
||||
UgcMusicBriefInfo music_record = 4;
|
||||
UgcMusicRecord music_record = 2;
|
||||
}
|
||||
oneof brief {
|
||||
UgcMusicBriefInfo music_brief_info = 1819;
|
||||
UgcMusicBriefInfo music_brief_info = 1540;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user