GC-Proto/proto/PublishUgcRsp.proto

15 lines
234 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "UgcType.proto";
2023-02-28 04:12:44 +03:00
// Name: KPBGKBNCNBB
// CmdId: 6331
2023-02-18 04:48:44 +03:00
message PublishUgcRsp {
2023-02-28 04:12:44 +03:00
uint64 ugc_guid = 4;
UgcType ugc_type = 9;
int32 retcode = 3;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00