Skip to content

Commit

Permalink
add utility folder
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Dec 11, 2024
1 parent 9fd7d09 commit f26320b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ using namespace geode::prelude;
if (!std::filesystem::exists((configDir / R"(levelCompleteImages)"))) {
std::filesystem::create_directory(configDir / R"(levelCompleteImages)");
}
if (!std::filesystem::exists((configDir / R"(disabled_level_complete_images)"))) {
std::filesystem::create_directory(configDir / R"(disabled_level_complete_images)");
}
auto pathDefault = (Mod::get()->getResourcesDir() / "default.txt");
std::ifstream file(pathDefault);
std::string placeHolder;
Expand Down

0 comments on commit f26320b

Please sign in to comment.