expose the boolean flags that moved to GameSettings

This commit is contained in:
Tim Felgentreff 2022-03-15 23:22:03 +01:00
parent 617b5f0652
commit 31495b4f37

View file

@ -74,13 +74,17 @@ class Settings {
int Opponents;
int Difficulty;
GameTypes GameType;
FieldOfViewTypes FoV;
FieldOfViewTypes FoV;
MapRevealModes RevealMap;
RevealTypes DefeatReveal;
int _Bitfield @ Flags;
RevealTypes DefeatReveal;
bool NoFogOfWar;
bool Inside;
bool AiExplores;
bool SimplifiedAutoTargeting;
int _Bitfield @ Flags;
bool GetUserGameSetting(int i);
void SetUserGameSetting(int i, bool v);
bool GetUserGameSetting(int i);
void SetUserGameSetting(int i, bool v);
};
$[