Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

modio::QueuedModDownload

Ahmed Castro edited this page Jul 17, 2019 · 3 revisions

Mod queued to be installed on user's local storage.

class QueuedModDownload
{
public:
  u32 state;
  u32 mod_id;
  double current_progress;
  double total_size;
  std::string url;
  std::string path;
  modio::Mod 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 std::string Mod's binary URL.
path std::string Local path where the mod will be installed.
mod modio::Mod modio::Mod object.

See also: ModioQueuedModDownload

Contents

Clone this wiki locally