For instance, if you had the code:
- Code: Select all
struct playerCodes
{
char playerName[50];
int state;
int type;
int level;
float health;
};
playerCodes strPlayerCodes[50];
Could I save this entire class to a file using the built in saveVars()? Or can you only save variables declared through the script editor menu?