GC-Proto/proto/PlayerPreEnterMpNotify.proto

16 lines
268 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-21 00:45:19 +03:00
// 4.7.0
// CmdId: 22149
// Obf: GPMDAELMECF
2023-09-02 00:26:44 +03:00
message PlayerPreEnterMpNotify {
enum State {
INVALID = 0;
START = 1;
TIMEOUT = 2;
2024-08-21 00:45:19 +03:00
}
State state = 7;
string nickname = 2;
uint32 uid = 3;
2023-09-02 00:26:44 +03:00
}