GC-Proto/proto/PrivateChatReq.proto

16 lines
263 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 4959
// EnetChannelId: 0
// EnetIsReliable: true
// IsAllowClient: true
message PrivateChatReq {
uint32 target_uid = 2;
oneof content {
string text = 8;
uint32 icon = 6;
}
}