2024-04-22 15:15:37 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "Vector.proto";
|
|
|
|
|
2024-07-05 00:44:58 +03:00
|
|
|
// 4.7.0
|
|
|
|
// CmdId: 5852
|
|
|
|
// ?
|
2024-04-22 15:15:37 +03:00
|
|
|
message WindSeedClientNotify {
|
|
|
|
message RefreshNotify {
|
2024-07-05 00:44:58 +03:00
|
|
|
uint32 refresh_num = 12;
|
2024-04-22 15:15:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message AddWindBulletNotify {
|
2024-07-05 00:44:58 +03:00
|
|
|
Vector seed_pos = 13;
|
|
|
|
uint32 NIDGMKAEPIF = 7; // ?
|
|
|
|
uint32 NLKNLGBIAHD = 9; // ?
|
2024-04-22 15:15:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message AreaNotify {
|
2024-07-05 00:44:58 +03:00
|
|
|
bytes area_code = 1;
|
|
|
|
uint32 area_type = 12;
|
|
|
|
uint32 area_id = 2;
|
2024-04-22 15:15:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
oneof notify {
|
2024-07-05 00:44:58 +03:00
|
|
|
RefreshNotify refresh_notify = 14;
|
|
|
|
AddWindBulletNotify add_wind_bullet_notify = 9;
|
|
|
|
AreaNotify area_notify = 8;
|
2024-04-22 15:15:37 +03:00
|
|
|
}
|
|
|
|
}
|