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";
|
2024-08-21 04:48:06 +03:00
|
|
|
// 4.7.0
|
|
|
|
// CmdId: 6778
|
|
|
|
// ?
|
2023-05-23 13:12:42 +03:00
|
|
|
message UpdateAbilityCreatedMovingPlatformNotify {
|
|
|
|
enum OpType {
|
|
|
|
OP_TYPE_NONE = 0;
|
|
|
|
OP_TYPE_ACTIVATE = 1;
|
|
|
|
OP_TYPE_DEACTIVATE = 2;
|
|
|
|
}
|
2024-08-21 04:48:06 +03:00
|
|
|
uint32 entity_id = 5;
|
2023-08-17 14:18:58 +03:00
|
|
|
OpType op_type = 12;
|
2024-05-22 14:51:09 +03:00
|
|
|
}
|