Add config class for loading and saving of config file

This commit is contained in:
Jonathan Goyvaerts
2019-04-17 21:40:31 +02:00
parent bedd8ea40f
commit a01908aa15
2 changed files with 136 additions and 0 deletions

10
src/xenia/config.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef XENIA_CONFIG_H_
#define XENIA_CONFIG_H_
#include <string>
namespace config {
void SetupConfig(const std::wstring& config_folder);
void LoadGameConfig(const std::wstring& title_id);
} // namespace config
#endif // XENIA_CONFIG_H_