diff options
| author | Fuwn <[email protected]> | 2024-06-12 07:02:50 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 07:02:50 -0700 |
| commit | eb78b1a9592d8bd1234beb18fe8141ef705d97ee (patch) | |
| tree | 2aa951640d15871e5ac17540a984cc3fb0e421a6 /property_set_command.proto | |
| parent | refactor: clearer comamnd names (diff) | |
| download | worldserver-protobufs-eb78b1a9592d8bd1234beb18fe8141ef705d97ee.tar.xz worldserver-protobufs-eb78b1a9592d8bd1234beb18fe8141ef705d97ee.zip | |
refactor: use snake case (style guide)
Diffstat (limited to 'property_set_command.proto')
| -rw-r--r-- | property_set_command.proto | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/property_set_command.proto b/property_set_command.proto new file mode 100644 index 0000000..df6b7bc --- /dev/null +++ b/property_set_command.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +package whirl; + +import "property_list.proto"; + +message PropertySetCommand { + string from_user = 1; + PropertyList property_list = 2; +} |