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

#include "h-basic.h"

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

/**
 * Context help runtime data.
 */
struct help_info
{
	bool_ enabled;              /* ingame help enabled */
	bool_ activated[HELP_MAX];  /* help item #i activated? */
};