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

16
proto/AvatarEnterSceneInfo.proto Normal file → Executable file
View File

@@ -6,12 +6,12 @@ import "AbilitySyncStateInfo.proto";
import "ServerBuff.proto";
message AvatarEnterSceneInfo {
uint64 avatarGuid = 1;
uint32 avatarEntityId = 2;
AbilitySyncStateInfo avatarAbilityInfo = 3;
repeated uint32 buffIdList = 4;
uint64 weaponGuid = 5;
uint32 weaponEntityId = 6;
AbilitySyncStateInfo weaponAbilityInfo = 7;
repeated ServerBuff serverBuffList = 8;
uint64 avatar_guid = 1;
uint32 avatar_entity_id = 2;
AbilitySyncStateInfo avatar_ability_info = 3;
repeated uint32 buff_id_list = 4;
uint64 weapon_guid = 5;
uint32 weapon_entity_id = 6;
AbilitySyncStateInfo weapon_ability_info = 7;
repeated ServerBuff server_buff_list = 8;
}