mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
20 lines
335 B
Protocol Buffer
20 lines
335 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: KNEOLPEIPID
|
|
// CmdId: 829
|
|
message UpdateAbilityCreatedMovingPlatformNotify {
|
|
// Name: IPLKGKOHDOL
|
|
enum OpType {
|
|
OP_NONE = 0;
|
|
OP_ACTIVATE = 1;
|
|
OP_DEACTIVATE = 2;
|
|
}
|
|
|
|
OpType op_type = 8;
|
|
uint32 entity_id = 7;
|
|
}
|
|
|