ModioQueuedModDownload - modio/modio-sdk-legacy GitHub Wiki
Mod queued to be installed on user's local storage.
struct ModioQueuedModDownload
{
u32 state;
u32 mod_id;
double current_progress;
double total_size;
char* url;
char* path;
ModioMod mod;
};
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 | char* |
Mod's binary URL. |
path | char* |
Local path where the mod will be installed. |
mod | ModioMod |
ModioMod object. |
See also: modio::QueuedModDownload