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

10 lines
127 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-21 11:30:31 +03:00
syntax = "proto3";
message MsgParam {
oneof Param {
uint32 intParam = 1;
float fltParam = 2;
string strParam = 3;
}
}