GC-Proto/proto/OtherPlayerEnterHomeNotify....

16 lines
253 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
// CmdId: 22683
message OtherPlayerEnterHomeNotify {
enum Reason {
INVALID = 0;
ENTER = 1;
LEAVE = 2;
}
string nickname = 3;
Reason reason = 7;
}