18 lines
411 B
Protocol Buffer
18 lines
411 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
import "BreakoutSnapShot.proto";
|
||
|
import "MassivePropSyncInfo.proto";
|
||
|
|
||
|
message AbilityMixinRecoverInfo {
|
||
|
oneof source {
|
||
|
uint32 instanced_ability_id = 1;
|
||
|
uint32 instanced_modifier_id = 2;
|
||
|
}
|
||
|
BreakoutSnapShot breakout_snap_shot = 7;
|
||
|
repeated uint32 data_list = 4;
|
||
|
repeated MassivePropSyncInfo massive_prop_list = 6;
|
||
|
bool is_serverbuff_modifier = 5;
|
||
|
uint32 local_id = 3;
|
||
|
}
|