mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
21 lines
324 B
Protocol Buffer
21 lines
324 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: NMKDCJBDNHL
|
|
// CmdId: 1832
|
|
message PlayerPreEnterMpNotify {
|
|
// Name: NLPMIDEGMNA
|
|
enum State {
|
|
INVALID = 0;
|
|
START = 1;
|
|
TIMEOUT = 2;
|
|
}
|
|
|
|
string nickname = 10;
|
|
State state = 14;
|
|
uint32 uid = 12;
|
|
}
|
|
|