Xonotic
rpn.qh
Go to the documentation of this file.
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;
11 int rpn_sp;
13 
14 void GenericCommand_rpn(int request, int argc, string command);
void GenericCommand_rpn(int request, int argc, string command)
Definition: rpn.qc:63
int rpn_db
Definition: rpn.qh:9
int rpn_error
Definition: rpn.qh:10
string rpn_stack[MAX_RPN_STACK]
Definition: rpn.qh:12
int rpn_sp
Definition: rpn.qh:11
const int MAX_RPN_STACK
Definition: rpn.qh:8