mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 16:16:46 +00:00
18 lines
438 B
Protocol Buffer
18 lines
438 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
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;
|
|
}
|