mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
23 lines
411 B
Protocol Buffer
23 lines
411 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: PJEPKPGNFNF
|
|
// CmdId: 1161
|
|
message PerformOperationNotify {
|
|
// Name: PAALNOEKAHO
|
|
enum OperateType {
|
|
OPERATE_TYPE_NONE = 0;
|
|
OPERATE_TYPE_EFFECT = 1;
|
|
}
|
|
|
|
Vector pos = 11;
|
|
OperateType operate_type = 3;
|
|
Vector rot = 6;
|
|
uint32 index = 2;
|
|
uint32 entity_id = 15;
|
|
}
|
|
|