]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/command/rpn.qh
Set gun alignment on the server (hopefully more reliable)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / rpn.qh
index e811a78bb3c78fe3f4dc3426e793e6ef5623555b..ba028e248431806131679777bf116d8430d4f07a 100644 (file)
@@ -1,14 +1,14 @@
-#ifndef RPN_H
-#define RPN_H
+#pragma once
 
 // =========================================================
 //  Declarations for RPN command code, written by divVerent
 //  Last updated: December 28th, 2011
 // =========================================================
 
-const float MAX_RPN_STACK = 16;
+const int MAX_RPN_STACK = 16;
 int rpn_db;
 int rpn_error;
 int rpn_sp;
 string rpn_stack[MAX_RPN_STACK];
-#endif
\ No newline at end of file
+
+void GenericCommand_rpn(float request, float argc, string command);