Add chicken bits setting

2 bits so far
This commit is contained in:
Jonathan G Rennison
2019-08-28 19:10:34 +01:00
parent eef1f52f93
commit 9a05ea67d5
13 changed files with 68 additions and 3 deletions

View File

@@ -642,6 +642,11 @@ struct CompanySettings {
bool advance_order_on_clone; ///< when cloning a vehicle or copying/sharing an order list, advance the current order to a suitable point
};
/** Debug settings. */
struct DebugSettings {
uint32 chicken_bits; ///< chicken bits
};
/** All settings together for the game. */
struct GameSettings {
DifficultySettings difficulty; ///< settings related to the difficulty
@@ -658,6 +663,7 @@ struct GameSettings {
LinkGraphSettings linkgraph; ///< settings for link graph calculations
StationSettings station; ///< settings related to station management
LocaleSettings locale; ///< settings related to used currency/unit system in the current game
DebugSettings debug; ///< debug settings
};
/** All settings that are only important for the local client. */