GC-Proto/proto/PerformOperationNotify.proto
2023-04-11 11:14:48 +08:00

23 lines
410 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
// CmdId: 1182
// Name: PJPCHDNKAEC
message PerformOperationNotify {
// Name: DPGKAGJABPH
enum OperateType {
OPERATE_TYPE_NONE = 0;
OPERATE_TYPE_EFFECT = 1;
}
Vector pos = 4;
OperateType operate_type = 11;
Vector rot = 1;
uint32 index = 5;
uint32 entity_id = 3;
}