Windows settings write fix

This commit is contained in:
MihailRis
2023-12-14 14:55:25 +03:00
parent 396ee31bcc
commit cd4d07c6d8
3 changed files with 19 additions and 14 deletions
+5 -2
View File
@@ -2,11 +2,14 @@
#define FILES_SETTINGS_IO_H_
#include <string>
#include "../coders/toml.h"
#include "../settings.h"
namespace toml {
class Wrapper;
}
extern std::string write_controls();
extern toml::Wrapper create_wrapper(EngineSettings& settings);
extern toml::Wrapper* create_wrapper(EngineSettings& settings);
extern void load_controls(std::string filename, std::string source);
#endif // FILES_SETTINGS_IO_H_