- added a new variable flag that allows defining variables which can only be modified by internal script code but not by external mods. Currently this is used by the NoBlockmap and NoSector flags which need special handling for changing.
This commit is contained in:
parent
3661e479d9
commit
7b7b66d8b7
9 changed files with 67 additions and 43 deletions
|
|
@ -78,7 +78,7 @@ struct ZCC_ConstantWork
|
|||
class ZCCCompiler
|
||||
{
|
||||
public:
|
||||
ZCCCompiler(ZCC_AST &tree, DObject *outer, PSymbolTable &symbols, PSymbolTable &outsymbols);
|
||||
ZCCCompiler(ZCC_AST &tree, DObject *outer, PSymbolTable &symbols, PSymbolTable &outsymbols, int lumpnum);
|
||||
~ZCCCompiler();
|
||||
int Compile();
|
||||
|
||||
|
|
@ -149,6 +149,7 @@ private:
|
|||
PSymbolTable *GlobalTreeNodes;
|
||||
PSymbolTable *OutputSymbols;
|
||||
ZCC_AST *
|
||||
int Lump;
|
||||
};
|
||||
|
||||
void ZCC_InitConversions();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue