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

modio::GameTagOption

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

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

class GameTagOption
{
public:
  u32 hidden;
  std::string name;
  std::string type;
  std::vector< std::string > tags;
};
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 std::string Name of the tag group.
type std::string Can multiple tags be selected via 'checkboxes' or should only a single tag be selected via a 'dropdown'.
tags std::vector< std::string > Array of tags in this group.

See also: API, ModioGameTagOption

Contents

Clone this wiki locally