Add some functions + namespace support

This commit is contained in:
Federico Cecchetto
2022-06-11 23:21:47 +02:00
parent a1b8d80bf2
commit c466066530
5 changed files with 105 additions and 13 deletions

View File

@ -767,4 +767,19 @@ namespace game
{
ScriptParseTree* scriptParseTree;
};
union sval_u
{
unsigned __int8 type;
unsigned int stringValue;
unsigned int idValue;
float floatValue;
int intValue;
sval_u* node;
unsigned int sourcePosValue;
const char* codePosValue;
const char* debugString;
void* block;
};
}