aboutsummaryrefslogtreecommitdiff
path: root/command.proto
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-12 07:02:50 -0700
committerFuwn <[email protected]>2024-06-12 07:02:50 -0700
commiteb78b1a9592d8bd1234beb18fe8141ef705d97ee (patch)
tree2aa951640d15871e5ac17540a984cc3fb0e421a6 /command.proto
parentrefactor: clearer comamnd names (diff)
downloadworldserver-protobufs-eb78b1a9592d8bd1234beb18fe8141ef705d97ee.tar.xz
worldserver-protobufs-eb78b1a9592d8bd1234beb18fe8141ef705d97ee.zip
refactor: use snake case (style guide)
Diffstat (limited to 'command.proto')
-rw-r--r--command.proto35
1 files changed, 35 insertions, 0 deletions
diff --git a/command.proto b/command.proto
new file mode 100644
index 0000000..d3b69fa
--- /dev/null
+++ b/command.proto
@@ -0,0 +1,35 @@
+syntax = "proto3";
+
+package whirl;
+
+enum Command {
+ UNKNOWN = 0;
+ APPEARACTORCMD = 12;
+ APPINITCMD = 8;
+ BUDDYLISTNOTIFYCMD = 30;
+ BUDDYLISTUPDATECMD = 29;
+ CHANNELCMD = 31;
+ DISAPPEARACTORCMD = 11;
+ FINGERREPLYCMD = 28;
+ FINGERREQCMD = 27;
+ LONGLOCCMD = 1;
+ PROPCMD = 3;
+ PROPSETCMD = 15;
+ PROPUPDCMD = 16;
+ PROPREQCMD = 10;
+ REDIRECTCMD = 25;
+ REDIRECTIDCMD = 26;
+ REGOBJIDCMD = 13;
+ ROOMCHNGCMD = 5;
+ ROOMIDCMD = 21;
+ ROOMIDREQCMD = 20;
+ SESSIONEXITCMD = 7;
+ SESSIONINITCMD = 6;
+ SHORTLOCCMD = 4;
+ SUBSCRIBEDISTCMD = 24;
+ SUBSCRIBEROOMCMD = 22;
+ TELEPORTCMD = 18;
+ TEXTCMD = 14;
+ UNSUBSCRIBEROOMCMD = 23;
+ WHISPERCMD = 17;
+}