liuxiaolong
2019-12-04 abd6d2381b39009f8bd9faf47ddf4535a1596fdc
base.proto
New file
@@ -0,0 +1,14 @@
syntax = "proto3";
package protomsg;
// struct for sdk
message Point{
   int32 x = 1;
   int32 y = 2;
}
message Rect{
   int32 left = 1;
   int32 top = 2;
   int32 right = 3;
   int32 bottom = 4;
}