14 lines
293 B
Protocol Buffer
14 lines
293 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PropValue.proto";
|
|
|
|
// 4.6.0
|
|
// CmdId: 2408
|
|
message PlayerDataNotify {
|
|
uint32 region_id = 3;
|
|
map<uint32, PropValue> prop_map = 8;
|
|
uint64 server_time = 9;
|
|
bool is_first_login_today = 10;
|
|
string nick_name = 12;
|
|
} |