GC-Proto/proto/WindSeedClientNotify.proto
2023-08-23 01:23:37 +08:00

35 lines
655 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
message WindSeedClientNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
CMD_ID = 1182;
}
message RefreshNotify {
uint32 refresh_num = 14;
}
message AddWindBulletNotify {
uint32 seed_entity_id = 15;
Vector seed_pos = 13;
uint32 catch_player_uid = 14;
}
message AreaNotify {
uint32 area_id = 1;
bytes area_code = 4;
uint32 area_type = 8;
}
oneof Notify {
AddWindBulletNotify add_wind_bullet_notify = 1;
}
RefreshNotify refresh_notify = 9;
AreaNotify area_notify = 15;
}