]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/command/rpn.qh
Nades code: don't use booleans as array indexes for m_projectile, optimize spawn_held...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / rpn.qh
1 #pragma once
2
3 // =========================================================
4 //  Declarations for RPN command code, written by divVerent
5 //  Last updated: December 28th, 2011
6 // =========================================================
7
8 const int MAX_RPN_STACK = 16;
9 int rpn_db;
10 int rpn_error;
11 int rpn_sp;
12 string rpn_stack[MAX_RPN_STACK];
13
14 void GenericCommand_rpn(int request, int argc, string command);