diff options
Diffstat (limited to 'whisper_command.proto')
| -rw-r--r-- | whisper_command.proto | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/whisper_command.proto b/whisper_command.proto new file mode 100644 index 0000000..4be883f --- /dev/null +++ b/whisper_command.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; + +package whirl; + +import "obj_id.proto"; + +message WhisperCommand { + ObjID sender_id = 1; + string text = 2; + ObjID receiver_id = 3; +} |