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 Aug 29, 2018 · 3 revisions

The GameTagOption structure contained by the modio::Game object.

class GameTagOption
{
public:
  u32 hidden;
  std::string name;
  std::string type;
  std::vector< std::string > tags;
};

API schemas: Game Tag Option Object

C compatible base object: ModioGameTagOption

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.

Contents

Clone this wiki locally