Add startDownloadNexusFileForGame (#138)

This commit is contained in:
Jonathan Feenstra
2025-01-02 14:11:06 +01:00
committed by GitHub
parent 5cdf0f6f19
commit 8c47cea270
+3
View File
@@ -674,6 +674,9 @@ namespace mo2::python {
.def("startDownloadURLs", &IDownloadManager::startDownloadURLs, "urls"_a)
.def("startDownloadNexusFile", &IDownloadManager::startDownloadNexusFile,
"mod_id"_a, "file_id"_a)
.def("startDownloadNexusFileForGame",
&IDownloadManager::startDownloadNexusFileForGame, "game_name"_a,
"mod_id"_a, "file_id"_a)
.def("downloadPath", &IDownloadManager::downloadPath, "id"_a)
.def("onDownloadComplete", &IDownloadManager::onDownloadComplete,
"callback"_a)