#pragma once #include #include "script/engine/Engine.hpp" namespace atlas::script::module::filesystem { /** * Represent a path in the virtual file system */ class Path { public: explicit Path(const engine::Engine* atlasEngine, const std::string& path); }; }