diff options
| author | Fuwn <[email protected]> | 2024-06-12 06:50:29 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 06:50:29 -0700 |
| commit | d57ed896ec46ec5f081b3031bc8606033fdfd95f (patch) | |
| tree | 87755d7ef6e3c54dab914e9004df84cf86ca8845 /NetworkCommands.proto | |
| parent | refactor: clearer distance command (diff) | |
| download | worldserver-protobufs-d57ed896ec46ec5f081b3031bc8606033fdfd95f.tar.xz worldserver-protobufs-d57ed896ec46ec5f081b3031bc8606033fdfd95f.zip | |
refactor: clearer network protobuf names
Diffstat (limited to 'NetworkCommands.proto')
| -rw-r--r-- | NetworkCommands.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/NetworkCommands.proto b/NetworkCommands.proto new file mode 100644 index 0000000..d909716 --- /dev/null +++ b/NetworkCommands.proto @@ -0,0 +1,8 @@ +syntax = "proto3"; + +package whirl; + +message NetworkCommands { + repeated string receivable_network_packet = 1; + map<int32, string> property_list = 2; +} |