mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 21:47:39 +00:00
14 lines
262 B
Protocol Buffer
14 lines
262 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PropValue.proto";
|
|
|
|
message PlayerDataNotify {
|
|
string nickName = 1;
|
|
uint64 clientTime = 2;
|
|
bool isFirstLoginToday = 3;
|
|
uint32 regionId = 4;
|
|
map<uint32, PropValue> propMap = 6;
|
|
}
|