mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-03 07:36:07 +03:00
19 lines
335 B
Protocol Buffer
19 lines
335 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "AbilityControlBlock.proto";
|
|
|
|
message AbilityChangeNotify {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
ENET_CHANNEL_ID = 0;
|
|
ENET_IS_RELIABLE = 1;
|
|
CMD_ID = 1112;
|
|
}
|
|
|
|
uint32 entity_id = 1;
|
|
AbilityControlBlock ability_control_block = 2;
|
|
}
|