]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/command/rpn.qh
Merge remote-tracking branch 'origin/master' into terencehill/menu_remove_tab_title
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / rpn.qh
1 #ifndef COMMAND_RPN_H
2 #define COMMAND_RPN_H
3
4 // =========================================================
5 //  Declarations for RPN command code, written by divVerent
6 //  Last updated: December 28th, 2011
7 // =========================================================
8
9 const int MAX_RPN_STACK = 16;
10 int rpn_db;
11 int rpn_error;
12 int rpn_sp;
13 string rpn_stack[MAX_RPN_STACK];
14
15 void GenericCommand_rpn(float request, float argc, string command);
16
17 #endif