| 263 | } |
| 264 | |
| 265 | u8string SteamPaths::getDownloadDepotFolder(u8string_view steamroot, const SteamGameData& data) const |
| 266 | { |
| 267 | return Path::Combine( |
| 268 | steamroot, downloadDepotFolder, "app_" + std::to_string(data.appId), "depot_" + std::to_string(data.depotId)); |
| 269 | } |
| 270 | |
| 271 | bool triggerSteamDownload() |
| 272 | { |
no test coverage detected