GC-Proto/proto/OtherPlayerEnterHomeNotify.proto
2023-04-11 11:14:48 +08:00

20 lines
307 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 4876
// Name: EPNIBIGFPOK
message OtherPlayerEnterHomeNotify {
// Name: PFLMKOGOKAI
enum Reason {
INVALID = 0;
ENTER = 1;
LEAVE = 2;
}
string nickname = 10;
Reason reason = 3;
}