mirror of
https://github.com/alicealys/t5-gsc-utils.git
synced 2025-06-25 13:51:51 +00:00
Add some functions + namespace support
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
}
|
Reference in New Issue
Block a user