This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Structure to define all the layers of the config system. Layers can be expanded by expansion files (NoRedist, etc), or by ini platform parents | |
* (coming soon from another branch) | |
*/ | |
struct FConfigLayer | |
{ | |
// Used by the editor to display in the ini-editor | |
const TCHAR* EditorName; | |
// Path to the ini file (with variables) | |
const TCHAR* Path; |