1
0
mirror of https://gitlab.com/YuukiPS/GC-Proto.git synced 2025-01-31 01:59:26 +03:00
GC-Proto/proto/PropPair.proto
2024-08-28 11:45:34 +08:00

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