GC-Proto/proto/PlayerDataNotify.proto
2023-08-23 01:23:37 +08:00

17 lines
329 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "PropValue.proto";
// CmdId: 135
// EnetChannelId: 0
// EnetIsReliable: true
message PlayerDataNotify {
string nick_name = 15;
uint64 server_time = 2;
bool is_first_login_today = 11;
uint32 region_id = 9;
map<uint32, PropValue> prop_map = 8;
}