mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
18 lines
345 B
Protocol Buffer
18 lines
345 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;
|
|
}
|
|
}
|