14 lines
284 B
Protocol Buffer
14 lines
284 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// 4.7.0
|
|
// CmdId: 6778
|
|
// ?
|
|
message UpdateAbilityCreatedMovingPlatformNotify {
|
|
enum OpType {
|
|
OP_TYPE_NONE = 0;
|
|
OP_TYPE_ACTIVATE = 1;
|
|
OP_TYPE_DEACTIVATE = 2;
|
|
}
|
|
uint32 entity_id = 5;
|
|
OpType op_type = 12;
|
|
} |