mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
19 lines
346 B
Protocol Buffer
19 lines
346 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "UgcMusicBriefInfo.proto";
|
|
import "UgcType.proto";
|
|
|
|
// Name: HCHEBMEEOJO
|
|
// CmdId: 6346
|
|
message GetUgcBriefInfoRsp {
|
|
UgcType ugc_type = 14;
|
|
int32 retcode = 4;
|
|
uint64 ugc_guid = 7;
|
|
oneof brief {
|
|
UgcMusicBriefInfo music_brief_info = 8;
|
|
}
|
|
}
|
|
|