]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/command/rpn.qh
Add an option (off by default) to allow the vortex to charge even while not in hand
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / rpn.qh
index e811a78bb3c78fe3f4dc3426e793e6ef5623555b..75f5ba65d88ce2f06682fdce971dbd4671cda72d 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(int request, int argc, string command);