1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-04-09 02:26:06 +03:00
GC-Proto/proto/PropValue.proto
2024-05-22 19:51:09 +08:00

13 lines
189 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
//4.6.0
message PropValue {
uint32 type = 1;
oneof value {
int64 ival = 2;
float fval = 3;
}
int64 val = 4;
}