GC-Proto/proto/WindSeedClientNotify.proto

31 lines
586 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
// 4.7.0
// CmdId: 5852
// ?
message WindSeedClientNotify {
message RefreshNotify {
uint32 refresh_num = 12;
}
message AddWindBulletNotify {
Vector seed_pos = 13;
uint32 NIDGMKAEPIF = 7; // ?
uint32 NLKNLGBIAHD = 9; // ?
}
message AreaNotify {
bytes area_code = 1;
uint32 area_type = 12;
uint32 area_id = 2;
}
oneof notify {
RefreshNotify refresh_notify = 14;
AddWindBulletNotify add_wind_bullet_notify = 9;
AreaNotify area_notify = 8;
}
}