11 lines
288 B
C++
11 lines
288 B
C++
#include "file.hpp"
|
|
|
|
#include "string_utils.hpp"
|
|
|
|
void prism::set_domain_path(const prism::domain domain, const prism::path path) {
|
|
domain_data[(int)domain] = replace_substring(path.string(), "{resource_dir}/", "");
|
|
}
|
|
|
|
prism::path prism::get_writeable_directory() {
|
|
return "~";
|
|
}
|