ModioInstalledMod - modio/modio-sdk-legacy GitHub Wiki

Mods installed on user's local storage.

struct ModioInstalledMod
{
  u32 mod_id;
  u32 modfile_id;
  u32 updated_at;
  char* path;
  ModioMod 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 char* Local directory installation path.
mod ModioMod ModioMod object stored on cache.

See also: modio::InstalledMod