mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
25 lines
384 B
Protocol Buffer
25 lines
384 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "Vector.proto";
|
||
|
|
||
|
message AbilityMixinWindSeedSpawner {
|
||
|
message AddSignal {
|
||
|
}
|
||
|
message RefreshSeed {
|
||
|
repeated Vector lfglcalgdac = 1;
|
||
|
}
|
||
|
message CatchSeed {
|
||
|
uint32 entityId = 5;
|
||
|
}
|
||
|
|
||
|
oneof EMKLHFDNJMA {
|
||
|
AddSignal add_signal = 13;
|
||
|
RefreshSeed refresh_seed = 3;
|
||
|
CatchSeed catch_seed = 4;
|
||
|
}
|
||
|
}
|