GC-Proto/proto/PropPair.proto

11 lines
190 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Version: 5.0
import "PropValue.proto";
message PropPair {
uint32 type = 1;
PropValue prop_value = 2;
}