diff options
| author | Fuwn <[email protected]> | 2024-06-12 06:00:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 06:03:20 -0700 |
| commit | 8efcb39ada60dc1ec7362ccb979df2a9445525ea (patch) | |
| tree | 491f157c8d7b903e143701645b6963e026f3c3f0 /TeleportCmd.proto | |
| download | worldserver-protobufs-8efcb39ada60dc1ec7362ccb979df2a9445525ea.tar.xz worldserver-protobufs-8efcb39ada60dc1ec7362ccb979df2a9445525ea.zip | |
feat: initial commit
Diffstat (limited to 'TeleportCmd.proto')
| -rw-r--r-- | TeleportCmd.proto | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/TeleportCmd.proto b/TeleportCmd.proto new file mode 100644 index 0000000..554fd10 --- /dev/null +++ b/TeleportCmd.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; + +package whirl; + +message TeleportCmd { + int32 room_id = 1; + int32 exit_type = 2; + int32 entry_type = 3; + int32 x = 4; + int32 y = 5; + int32 z = 6; + int32 direction = 7; +} |