GC-Proto/proto/OtherPlayerEnterHomeNotify....

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;
}