liuxiaolong
2020-11-19 0283b2a5fb366d14a4ffe18d95e89d60b87b7343
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}