about summary refs log tree commit diff
path: root/lri-proto/proto/point2f.proto
diff options
context:
space:
mode:
Diffstat (limited to 'lri-proto/proto/point2f.proto')
-rw-r--r--lri-proto/proto/point2f.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/lri-proto/proto/point2f.proto b/lri-proto/proto/point2f.proto
new file mode 100644
index 0000000..726d594
--- /dev/null
+++ b/lri-proto/proto/point2f.proto
@@ -0,0 +1,8 @@
+syntax = "proto2";
+
+package ltpb;
+
+message Point2F {
+    required float x = 1;
+    required float y = 2;
+}