ModioGameTagOption - modio/modio-sdk-legacy GitHub Wiki

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