#pragma once #include #include #include #include #include #include #include #include using nlohmann::json; namespace config { void load(std::string path); void startAutoSave(); void stopAutoSave(); void setRootDirectory(std::string dir); std::string getRootDirectory(); extern bool configModified; extern json config; };