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 /NetworkData.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 'NetworkData.proto')
| -rw-r--r-- | NetworkData.proto | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/NetworkData.proto b/NetworkData.proto new file mode 100644 index 0000000..786370e --- /dev/null +++ b/NetworkData.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; + +package whirl; + +message NetData { + bytes data = 1; + int32 packet_size = 2; + int32 offset = 3; +} |