mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
26 lines
530 B
Protocol Buffer
26 lines
530 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
|
|
message ChatInfo {
|
|
enum SystemHintType {
|
|
SYSTEM_HINT_TYPE_CHAT_NONE = 0;
|
|
SYSTEM_HINT_TYPE_CHAT_ENTER_WORLD = 1;
|
|
SYSTEM_HINT_TYPE_CHAT_LEAVE_WORLD = 2;
|
|
}
|
|
message SystemHint {
|
|
uint32 type = 7;
|
|
}
|
|
bool is_read = 4;
|
|
uint32 time = 8;
|
|
uint32 to_uid = 5;
|
|
uint32 sequence = 7;
|
|
uint32 uid = 10;
|
|
oneof content {
|
|
uint32 icon = 21;
|
|
string text = 357;
|
|
SystemHint system_hint = 922;
|
|
}
|
|
} |