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

ModioIcon

Ahmed Castro edited this page Aug 29, 2018 · 4 revisions

API schemas: Icon Object

C++ wrapper: modio::Icon

struct ModioIcon
{
  char* filename;
  char* original;
  char* thumb_64x64;
  char* thumb_128x128;
  char* thumb_256x256;
};

The ModioIcon structure represents images hosted on mod.io.

Name Type Description
filename char* Icon filename including extension.
original char* URL to the full-sized icon.
thumb_64x64 char* URL to the small thumbnail image.
thumb_128x128 char* URL to the medium thumbnail image.
thumb_256x256 char* URL to the large thumbnail image.

Contents

Clone this wiki locally