mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
20 lines
307 B
Protocol Buffer
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;
|
|
}
|
|
|