diff options
| author | Fuwn <[email protected]> | 2024-06-12 07:10:28 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 07:10:28 -0700 |
| commit | ebd9a84b39c9b5e7004e4ba96b5c900c949e24e5 (patch) | |
| tree | 4e87fe1120432457d91dfa7d30b0fe6058a89d2a /commands/whisper_command.proto | |
| parent | refactor: rename ObjID (diff) | |
| download | worldserver-protobufs-ebd9a84b39c9b5e7004e4ba96b5c900c949e24e5.tar.xz worldserver-protobufs-ebd9a84b39c9b5e7004e4ba96b5c900c949e24e5.zip | |
refactor: move commands to command module
Diffstat (limited to 'commands/whisper_command.proto')
| -rw-r--r-- | commands/whisper_command.proto | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/commands/whisper_command.proto b/commands/whisper_command.proto new file mode 100644 index 0000000..24ad47c --- /dev/null +++ b/commands/whisper_command.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; + +package whirl; + +import "object_id.proto"; + +message WhisperCommand { + ObjectID sender_id = 1; + string text = 2; + ObjectID receiver_id = 3; +} |