GC-Proto/proto/OtherPlayerEnterHomeNotify....

15 lines
228 B
Protocol Buffer
Raw Normal View History

2023-09-02 00:26:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2024-05-22 14:51:09 +03:00
// CmdId: 20379
2023-09-02 00:26:44 +03:00
message OtherPlayerEnterHomeNotify {
2024-06-02 06:52:03 +03:00
enum Reason {
INVALID = 0;
ENTER = 1;
LEAVE = 2;
}
2024-05-22 14:51:09 +03:00
2024-06-02 06:52:03 +03:00
Reason reason = 4;
string nickname = 7;
2023-09-02 00:26:44 +03:00
}