mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
23 lines
410 B
Protocol Buffer
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;
|
|
}
|
|
|