]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/command/rpn.qh
5f6856c3a942c9b9db25440fde528caafb29566d
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / rpn.qh
1 // =========================================================
2 //  Declarations for RPN command code, written by divVerent
3 //  Last updated: December 28th, 2011
4 // =========================================================
5
6 const float MAX_RPN_STACK = 16;
7 int rpn_db;
8 int rpn_error;
9 int rpn_sp;
10 string rpn_stack[MAX_RPN_STACK];