aboutsummaryrefslogtreecommitdiff
path: root/commands/redirect_command.proto
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-12 07:10:28 -0700
committerFuwn <[email protected]>2024-06-12 07:10:28 -0700
commitebd9a84b39c9b5e7004e4ba96b5c900c949e24e5 (patch)
tree4e87fe1120432457d91dfa7d30b0fe6058a89d2a /commands/redirect_command.proto
parentrefactor: rename ObjID (diff)
downloadworldserver-protobufs-ebd9a84b39c9b5e7004e4ba96b5c900c949e24e5.tar.xz
worldserver-protobufs-ebd9a84b39c9b5e7004e4ba96b5c900c949e24e5.zip
refactor: move commands to command module
Diffstat (limited to 'commands/redirect_command.proto')
-rw-r--r--commands/redirect_command.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/commands/redirect_command.proto b/commands/redirect_command.proto
new file mode 100644
index 0000000..7c1ce16
--- /dev/null
+++ b/commands/redirect_command.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+package whirl;
+
+message RedirectCommand {
+ int32 room_number = 1;
+ int32 ip_1 = 2;
+ int32 ip_2 = 3;
+ int32 ip_3 = 4;
+ int32 ip_4 = 5;
+ int32 port = 6;
+}