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

ModioMedia

Ahmed Castro edited this page Dec 27, 2017 · 9 revisions

The ModioMedia object is contained by the ModioMod object and lists links to videos, 3d models and images associated to a mod.

struct ModioMedia
{
  char** youtube_array;
  u32 youtube_size;
  char** sketchfab_array;
  u32 sketchfab_size;
  ModioImage* images_array;
  u32 images_size;
};

API schema: Mod Object

C++ wrapper: Media

Name Type Description
youtube_array char** Youtube links array
youtube_size u32 Yourube links array size
sketchfab_array char** Sketchfab links array
sketchfab_size u32 Sketchfab links array size
images_array ModioImage* ModioImage object array
images_size u32 Images array size

Contents

Clone this wiki locally