modio::InstalledMod - modio/modio-sdk-legacy GitHub Wiki

Mods installed on user's local storage.

class InstalledMod
{
public:
  u32 mod_id;
  u32 modfile_id;
  u32 updated_at;
  std::string path;
  Mod mod;
};
Name Type Description
mod_id u32 Unique mod identifier.
modfile_id u32 Unique modfile identifier.
updated_at u32 Unix timestamp of date mod was updated.
path std::string Local directory installation path.
mod modio::Mod modio::Mod object stored on cache.

See also: ModioInstalledMod