Settings: Add scenario editor section

This commit is contained in:
Jonathan G Rennison
2020-08-03 18:32:27 +01:00
parent 2c829bbc0f
commit 3dfbeb07f6
3 changed files with 12 additions and 0 deletions

View File

@@ -659,6 +659,10 @@ struct DebugSettings {
uint32 chicken_bits; ///< chicken bits
};
/** Scenario editor settings. */
struct ScenarioSettings {
};
/** All settings together for the game. */
struct GameSettings {
DifficultySettings difficulty; ///< settings related to the difficulty
@@ -687,6 +691,7 @@ struct ClientSettings {
SoundSettings sound; ///< sound effect settings
MusicSettings music; ///< settings related to music/sound
NewsSettings news_display; ///< news display settings.
ScenarioSettings scenario; ///< scenario editor settings
};
/** The current settings for this game. */