move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

20
proto/OnlinePlayerInfo.proto Normal file → Executable file
View File

@@ -2,19 +2,21 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "HeadImage.proto";
import "MpSettingType.proto";
import "ProfilePicture.proto";
message OnlinePlayerInfo {
uint32 uid = 1;
string nickname = 2;
uint32 playerLevel = 3;
MpSettingType mpSettingType = 5;
uint32 curPlayerNumInWorld = 6;
uint32 worldLevel = 7;
string onlineId = 8;
uint32 nameCardId = 9;
repeated uint32 blacklistUidList = 10;
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;
HeadImage avatar = 12;
ProfilePicture profile_picture = 12;
string psn_id = 13;
}