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

10 lines
128 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-21 11:30:31 +03:00
syntax = "proto3";
message AbilityArgument {
oneof Arg {
uint32 intArg = 1;
float floatArg = 2;
string strArg = 3;
}
}