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

ModioGameTagOption

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

Tag options allowed for all mods submitted to the corresponding game.

struct ModioGameTagOption
{
  u32 hidden;
  char* name;
  char* type;
  char** tags_array;
  u32 tags_array_size;
};
Name Type Description
hidden u32 Groups of tags flagged as 'admin only' should only be used for filtering, and should not be displayed to users.
name char* Name of the tag group.
type char* Can multiple tags be selected via 'checkboxes' or should only a single tag be selected via a 'dropdown'.
tags_array char** Array of tags in this group.
tags_array_size u32 Tags array size.

See also: API, modio::GameTagOption

Contents

Clone this wiki locally