1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-05-02 21:53:13 +03:00
GC-Proto/proto/OtherPlayerEnterHomeNotify.proto
2024-05-22 19:51:09 +08:00

15 lines
258 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;
}