Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/platforms/linux/file.cpp

12 lines
283 B
C++
Raw Normal View History

2020-08-11 12:07:21 -04:00
#include "file.hpp"
#include "string_utils.hpp"
2021-02-15 15:06:13 -05:00
void file::set_domain_path(const file::Domain domain, const file::Path path) {
domain_data[(int)domain] = replace_substring(path.string(), "{resource_dir}/", "");
2020-08-11 12:07:21 -04:00
}
2021-02-15 15:06:13 -05:00
file::Path file::get_writeable_directory() {
2021-02-24 14:18:51 -05:00
return "~";
2020-08-11 12:07:21 -04:00
}