track-width fixes

This commit is contained in:
MihailRis
2024-04-28 20:09:55 +03:00
parent 788bd6bf0f
commit 167388aefb
12 changed files with 66 additions and 57 deletions
+5 -6
View File
@@ -1,12 +1,15 @@
#ifndef FILES_SETTINGS_IO_HPP_
#define FILES_SETTINGS_IO_HPP_
#include "../data/dynamic.h"
#include <string>
#include <memory>
#include <vector>
#include <unordered_map>
#include "../settings.h"
#include "../data/dynamic.h"
class Setting;
struct EngineSettings;
struct Section {
std::string name;
@@ -27,8 +30,4 @@ public:
std::vector<Section>& getSections();
};
std::string write_controls();
void load_controls(std::string filename, std::string source);
#endif // FILES_SETTINGS_IO_HPP_