15 lines
292 B
Protocol Buffer
15 lines
292 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CombatTypeArgument.proto";
|
|
import "ForwardType.proto";
|
|
|
|
// Name: BEGHMDLHHND
|
|
message CombatInvokeEntry {
|
|
CombatTypeArgument argument_type = 6;
|
|
ForwardType forward_type = 13;
|
|
bytes combat_data = 7;
|
|
}
|
|
|