]> git.lizzy.rs Git - dragonblocks_alpha.git/blobdiff - src/server/server_commands.h
Use spaces for alignment
[dragonblocks_alpha.git] / src / server / server_commands.h
index 2f5d7a9056efeb04b266255fe993751795676a62..009a034eaf6e2e6fa2f9e8b362badadeadbc5b1e 100644 (file)
@@ -5,13 +5,13 @@
 
 typedef enum
 {
-       SERVER_COMMAND_NULL,    // invalid command
-       SC_DISCONNECT,                  // client notifies server about disconnecting
-       SC_AUTH,                                // client wants to authentify [body: name (zero terminated string)]
-       SC_SETNODE,                             // player placed a node [body: pos (v3s32), node (Node)]
-       SC_POS,                                 // player moved [body: pos (v3f)]
-       SC_REQUEST_BLOCK,               // request to send a block [body: pos (v3s32)]
-       SERVER_COMMAND_COUNT,   // count of available commands
+       SERVER_COMMAND_NULL,  // invalid command
+       SC_DISCONNECT,        // client notifies server about disconnecting
+       SC_AUTH,              // client wants to authentify [body: name (zero terminated string)]
+       SC_SETNODE,           // player placed a node [body: pos (v3s32), node (Node)]
+       SC_POS,               // player moved [body: pos (v3f)]
+       SC_REQUEST_BLOCK,     // request to send a block [body: pos (v3s32)]
+       SERVER_COMMAND_COUNT, // count of available commands
 } ServerCommand;
 
 #ifdef _CLIENT_H_