GC-Proto/proto/AbilityArgument.proto
2023-02-18 09:48:44 +08:00

15 lines
187 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message AbilityArgument {
oneof arg {
uint32 int_arg = 11;
float float_arg = 2;
string str_arg = 8;
}
}