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

11 lines
130 B
Protocol Buffer

syntax = "proto3";
message PropValue {
oneof Value {
int64 ival = 2;
float fval = 3;
}
uint32 type = 1;
int64 val = 4;
}