mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 10:55:56 +00:00
12 lines
180 B
Protocol Buffer
12 lines
180 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message PrivateChatReq {
|
||
|
uint32 targetUid = 1;
|
||
|
oneof content {
|
||
|
string text = 2;
|
||
|
uint32 icon = 3;
|
||
|
}
|
||
|
}
|