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 /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 'command.proto')
| -rw-r--r-- | command.proto | 35 |
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; +} |