GSServer-CBT/soggy-mistress/proto/AbilityArgument.proto

10 lines
128 B
Protocol Buffer

syntax = "proto3";
message AbilityArgument {
oneof Arg {
uint32 intArg = 1;
float floatArg = 2;
string strArg = 3;
}
}