[[TOC]]
Settings
Setup SettingsManager
To start, you create a global instance of SettingsManager.
Create settings classes
For each use-case - or let's call it category - you can create an own child settings class. Implement IChildSettings and ISettingsIdentifier. The Identifier property should contian a uniquie key to identify your settings within the settings file. The Reset() method resets all values to default.
Get settings instance
Access via the ISettings instance that you can get from ISettingsManager. Use the method ISettings.Get<T>() where T is your child settings class.