7 lines
164 B
Protocol Buffer
7 lines
164 B
Protocol Buffer
syntax = "proto3";
|
|
import "PropValue.proto";
|
|
option csharp_namespace = "FurinaImpact.Protocol";
|
|
message PropPair {
|
|
PropValue prop_value = 2;
|
|
uint32 type = 1;
|
|
}
|