| 95 | } |
| 96 | |
| 97 | void create_path(const std::string &root, const std::string &path) |
| 98 | { |
| 99 | std::filesystem::path full_path = std::filesystem::path(root) / path; |
| 100 | |
| 101 | if (!vkb::filesystem::get()->create_directory(full_path)) |
| 102 | { |
| 103 | ERRORF("Failed to create directory: {}", full_path.string()); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | std::vector<uint8_t> read_asset(const std::string &filename) |
| 108 | { |
no test coverage detected