summaryrefslogtreecommitdiff
path: root/src/help_info.hpp
blob: eed910293e5dd5e90bd2805bddbd67abb9c59938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <array>

#include "h-basic.hpp"

/**
 * Maximum number of help items.
 */
constexpr int HELP_MAX = 64;

/**
 * Context help runtime data.
 */
struct help_info
{
	bool enabled = false;                     /* ingame help enabled */
	std::array<bool, HELP_MAX> activated { }; /* help item #i activated? */
};