2022-12-28 07:44:06 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-12-28 07:44:06 +03:00
|
|
|
|
2023-01-29 02:46:20 +03:00
|
|
|
import "Vector.proto";
|
2023-01-29 13:42:51 +03:00
|
|
|
|
2022-12-28 07:44:06 +03:00
|
|
|
message WindSeedClientNotify {
|
2023-01-29 13:42:51 +03:00
|
|
|
//enum NFLDBGMKHKK {
|
|
|
|
// option allow_alias = true;
|
|
|
|
// NONE = 0;
|
|
|
|
// PEPPOHPHJOJ = 1114;
|
|
|
|
// DCDNILFDFLB = 0;
|
|
|
|
// NNBKOLMPOEA = 1;
|
|
|
|
//}
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
message RefreshNotify {
|
|
|
|
uint32 refreshNum = 13;
|
|
|
|
}
|
|
|
|
message AddWindBulletNotify {
|
2023-02-02 04:57:20 +03:00
|
|
|
uint32 Unk3300_CKIKKCAFJBC = 1;
|
2023-01-29 02:46:20 +03:00
|
|
|
Vector seedPos = 10;
|
2023-01-28 17:00:48 +03:00
|
|
|
uint32 Unk3300_MPDFAPBDJAH = 13;
|
|
|
|
}
|
|
|
|
message AreaNotify {
|
|
|
|
uint32 areaType = 5;
|
|
|
|
uint32 areaId = 12;
|
|
|
|
bytes areaCode = 1;
|
|
|
|
}
|
|
|
|
|
2023-01-29 07:22:25 +03:00
|
|
|
oneof notify {
|
2023-01-28 17:00:48 +03:00
|
|
|
RefreshNotify refresh_notify = 11;
|
|
|
|
AddWindBulletNotify add_wind_bullet_notify = 8;
|
|
|
|
AreaNotify area_notify = 2;
|
|
|
|
}
|
2022-12-28 07:44:06 +03:00
|
|
|
}
|