GC-Proto/proto/OtherPlayerEnterHomeNotify....

15 lines
250 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-08-17 09:14:42 +03:00
// 4.7.0
// CmdId: 28932
// DLLMKEHEAKF
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-08-17 09:14:42 +03:00
Reason reason = 6;
string nickname = 8;
2023-09-02 00:26:44 +03:00
}