17 lines
278 B
C++
17 lines
278 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
#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);
|
|
};
|
|
|
|
}
|