GC-Proto/proto/PropPair.proto

12 lines
165 B
Protocol Buffer

syntax = "proto3";
import "PropValue.proto";
option java_package = "emu.grasscutter.net.proto";
message PropPair {
uint32 type = 1;
PropValue propValue = 2;
}