13 lines
No EOL
301 B
C++
13 lines
No EOL
301 B
C++
#include "FileSystem.hpp"
|
|
|
|
namespace atlas::script::module::filesystem {
|
|
|
|
FileSystem::FileSystem(const vfs::VirtualFileSystem* fileSystem) {
|
|
this->fileSystem = fileSystem;
|
|
}
|
|
|
|
Path* FileSystem::getPath(const std::string &virtualPath) const {
|
|
return new Path(this->fileSystem, virtualPath);
|
|
}
|
|
|
|
} |