about summary refs log tree commit diff
path: root/lri-proto/proto/rectanglei.proto
diff options
context:
space:
mode:
Diffstat (limited to 'lri-proto/proto/rectanglei.proto')
-rw-r--r--lri-proto/proto/rectanglei.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/lri-proto/proto/rectanglei.proto b/lri-proto/proto/rectanglei.proto
new file mode 100644
index 0000000..8360ee4
--- /dev/null
+++ b/lri-proto/proto/rectanglei.proto
@@ -0,0 +1,10 @@
+syntax = "proto2";
+
+package ltpb;
+
+message RectangleI {
+    required int32 x = 1;
+    required int32 y = 2;
+    required int32 width = 3;
+    required int32 height = 4;
+}