Big refactor, shuffling a lot of files around

This commit is contained in:
2025-11-01 19:51:19 -04:00
parent 99b7d9f49d
commit 62cd94ca78
125 changed files with 4073 additions and 3011 deletions

20
src/util/filesystem_.h Normal file
View File

@@ -0,0 +1,20 @@
#pragma once
#include <filesystem>
#include <string>
namespace anm2ed::util::filesystem
{
std::string path_preferences_get();
bool path_is_exist(const std::string&);
bool path_is_extension(const std::string&, const std::string&);
class WorkingDirectory
{
public:
std::filesystem::path previous;
WorkingDirectory(const std::string&, bool = false);
~WorkingDirectory();
};
}