mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
20 lines
336 B
Protocol Buffer
20 lines
336 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 899
|
|
// Name: NAJCCPACDGD
|
|
message UpdateAbilityCreatedMovingPlatformNotify {
|
|
// Name: BEOBGNOIFEM
|
|
enum OpType {
|
|
OP_NONE = 0;
|
|
OP_ACTIVATE = 1;
|
|
OP_DEACTIVATE = 2;
|
|
}
|
|
|
|
uint32 entity_id = 10;
|
|
OpType op_type = 6;
|
|
}
|
|
|