mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
15 lines
228 B
Protocol Buffer
15 lines
228 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
// CmdId: 20379
|
|
message OtherPlayerEnterHomeNotify {
|
|
enum Reason {
|
|
INVALID = 0;
|
|
ENTER = 1;
|
|
LEAVE = 2;
|
|
}
|
|
|
|
Reason reason = 4;
|
|
string nickname = 7;
|
|
}
|