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 /Network2Property.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 'Network2Property.proto')
| -rw-r--r-- | Network2Property.proto | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Network2Property.proto b/Network2Property.proto new file mode 100644 index 0000000..94f6309 --- /dev/null +++ b/Network2Property.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; + +package whirl; + +message Network2Property { + int32 prop_id = 1; + int32 flags = 2; + int32 access = 3; + oneof value { + string string_value = 4; + bytes binary_value = 5; + } +}
\ No newline at end of file |