aboutsummaryrefslogtreecommitdiff
path: root/WhisperCommand.proto
diff options
context:
space:
mode:
Diffstat (limited to 'WhisperCommand.proto')
-rw-r--r--WhisperCommand.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/WhisperCommand.proto b/WhisperCommand.proto
new file mode 100644
index 0000000..746b2fe
--- /dev/null
+++ b/WhisperCommand.proto
@@ -0,0 +1,11 @@
+syntax = "proto3";
+
+package whirl;
+
+import "ObjID.proto";
+
+message WhisperCommand {
+ ObjID sender_id = 1;
+ string text = 2;
+ ObjID receiver_id = 3;
+}