diff options
| author | Fuwn <[email protected]> | 2024-06-12 06:00:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 06:03:20 -0700 |
| commit | 8efcb39ada60dc1ec7362ccb979df2a9445525ea (patch) | |
| tree | 491f157c8d7b903e143701645b6963e026f3c3f0 /TextCmd.proto | |
| download | worldserver-protobufs-8efcb39ada60dc1ec7362ccb979df2a9445525ea.tar.xz worldserver-protobufs-8efcb39ada60dc1ec7362ccb979df2a9445525ea.zip | |
feat: initial commit
Diffstat (limited to 'TextCmd.proto')
| -rw-r--r-- | TextCmd.proto | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/TextCmd.proto b/TextCmd.proto new file mode 100644 index 0000000..de94684 --- /dev/null +++ b/TextCmd.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +package whirl; + +import "ObjID.proto"; + +message TextCmd { + ObjID sender_id = 1; + string text = 2; +} |