GC-Proto/proto/PropPair.proto
2023-01-28 22:00:48 +08:00

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;
}