summaryrefslogtreecommitdiffstats
path: root/cc/proto/vector2d.proto
diff options
context:
space:
mode:
Diffstat (limited to 'cc/proto/vector2d.proto')
-rw-r--r--cc/proto/vector2d.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/cc/proto/vector2d.proto b/cc/proto/vector2d.proto
new file mode 100644
index 0000000..15171844
--- /dev/null
+++ b/cc/proto/vector2d.proto
@@ -0,0 +1,14 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package cc.proto;
+
+message Vector2d {
+ optional int64 x = 1;
+ optional int64 y = 2;
+}