aboutsummaryrefslogtreecommitdiff
path: root/Net2Property.proto
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-12 06:00:03 -0700
committerFuwn <[email protected]>2024-06-12 06:03:20 -0700
commit8efcb39ada60dc1ec7362ccb979df2a9445525ea (patch)
tree491f157c8d7b903e143701645b6963e026f3c3f0 /Net2Property.proto
downloadworldserver-protobufs-8efcb39ada60dc1ec7362ccb979df2a9445525ea.tar.xz
worldserver-protobufs-8efcb39ada60dc1ec7362ccb979df2a9445525ea.zip
feat: initial commit
Diffstat (limited to 'Net2Property.proto')
-rw-r--r--Net2Property.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/Net2Property.proto b/Net2Property.proto
new file mode 100644
index 0000000..523b17b
--- /dev/null
+++ b/Net2Property.proto
@@ -0,0 +1,13 @@
+syntax = "proto3";
+
+package whirl;
+
+message Net2Property {
+ 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