1
0
mirror of https://github.com/Grasscutters/Grasscutter.git synced 2025-02-19 19:45:09 +08:00
Grasscutter/proto/PropPair.proto
2022-04-17 05:43:07 -07:00

11 lines
164 B
Protocol Buffer

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