GC-Proto/proto/UpdateAbilityCreatedMovingPlatformNotify.proto

20 lines
335 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
2023-02-28 04:12:44 +03:00
// Name: KNEOLPEIPID
// CmdId: 829
2022-11-06 15:30:21 +03:00
message UpdateAbilityCreatedMovingPlatformNotify {
2023-02-28 04:12:44 +03:00
// Name: IPLKGKOHDOL
enum OpType {
OP_NONE = 0;
OP_ACTIVATE = 1;
OP_DEACTIVATE = 2;
}
2022-12-05 15:02:30 +03:00
2023-02-28 04:12:44 +03:00
OpType op_type = 8;
uint32 entity_id = 7;
2022-11-06 15:30:21 +03:00
}
2023-02-28 04:12:44 +03:00