This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
QueuedModDownload object
Ahmed Castro edited this page Sep 8, 2018
·
4 revisions
The QueuedModDownload structure is returned by the Downloads functions. They represent mods to be installed locally.
API schema: n/a
Name | Type | Description |
---|---|---|
state | u32 |
See Mod States constants. |
mod_id | u32 |
Unique mod identifier. |
current_progress | double |
Number of bytes downloaded. |
total_size | double |
Total number of bytes. |
url | std::string |
Mod's binary URL. |
path | std::string |
Local path where the mod will be installed. |
mod | modio::Mod |
modio::Mod object. |