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 /teleport_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 'teleport_command.proto')
| -rw-r--r-- | teleport_command.proto | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/teleport_command.proto b/teleport_command.proto new file mode 100644 index 0000000..d0c92b9 --- /dev/null +++ b/teleport_command.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; + +package whirl; + +message TeleportCommand { + int32 room_id = 1; + int32 exit_type = 2; + int32 entry_type = 3; + int32 x = 4; + int32 y = 5; + int32 z = 6; + int32 direction = 7; +} |