add automatic 'content' folder creation

This commit is contained in:
MihailRis
2024-06-08 10:03:16 +03:00
parent e8ea34fa31
commit 166c340098
3 changed files with 11 additions and 0 deletions
+8
View File
@@ -11,9 +11,17 @@
#include "WorldFiles.hpp"
const fs::path SCREENSHOTS_FOLDER {"screenshots"};
const fs::path CONTENT_FOLDER {"content"};
const fs::path CONTROLS_FILE {"controls.toml"};
const fs::path SETTINGS_FILE {"settings.toml"};
void EnginePaths::prepare() {
fs::path contentFolder = userfiles/fs::path(CONTENT_FOLDER);
if (!fs::is_directory(contentFolder)) {
fs::create_directories(contentFolder);
}
}
fs::path EnginePaths::getUserfiles() const {
return userfiles;
}