mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +03:00
19 lines
478 B
Protocol Buffer
19 lines
478 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ForwardType.proto";
|
|
import "AbilityInvokeEntryHead.proto";
|
|
import "AbilityInvokeArgument.proto";
|
|
|
|
// 4.6.0
|
|
message AbilityInvokeEntry {
|
|
double total_tick_time = 3;
|
|
uint32 forward_peer = 4;
|
|
ForwardType forward_type = 6;
|
|
AbilityInvokeEntryHead head = 7;
|
|
bool is_ignore_auth = 9;
|
|
uint32 event_id = 10;
|
|
AbilityInvokeArgument argument_type = 12;
|
|
bytes ability_data = 13;
|
|
uint32 entity_id = 14;
|
|
} |