GC-Proto/proto/OnlinePlayerInfo.proto

25 lines
584 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
import "MpSettingType.proto";
import "ProfilePicture.proto";
2023-04-11 11:18:47 +03:00
// Name: GEKCCHCJMPC
2022-11-06 15:30:21 +03:00
message OnlinePlayerInfo {
2023-02-28 06:08:38 +03:00
uint32 uid = 1;
string nickname = 2;
uint32 player_level = 3;
uint32 avatar_id = 4;
MpSettingType mp_setting_type = 5;
uint32 cur_player_num_in_world = 6;
uint32 world_level = 7;
string online_id = 8;
uint32 name_card_id = 9;
repeated uint32 blacklist_uid_list = 10;
string signature = 11;
ProfilePicture profile_picture = 12;
string psn_id = 13;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00