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