GC-Proto/proto/PropValue.proto

11 lines
180 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message PropValue {
2023-01-28 17:00:48 +03:00
uint32 type = 1;
2023-01-29 07:22:25 +03:00
oneof value {
2023-01-28 17:00:48 +03:00
int64 ival = 2;
float fval = 3;
}
int64 val = 4;
2022-11-06 15:30:21 +03:00
}