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

10 lines
127 B
Protocol Buffer

syntax = "proto3";
message MsgParam {
oneof Param {
uint32 intParam = 1;
float fltParam = 2;
string strParam = 3;
}
}