10 lines
128 B
Protocol Buffer
10 lines
128 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message AbilityArgument {
|
||
|
oneof Arg {
|
||
|
uint32 intArg = 1;
|
||
|
float floatArg = 2;
|
||
|
string strArg = 3;
|
||
|
}
|
||
|
}
|