summaryrefslogtreecommitdiff
path: root/src/cli_comm.hpp
blob: c83c5a955e6aeff1c8b96cdbac011dd609a3a670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "h-basic.hpp"

/**
 * A structure for CLI commands.
 */
struct cli_comm
{
	const char *comm;	/* Extended name of the command. */
	const char *descrip;	/* Description of the command. */
	s16b key;	/* Key to convert command to. */
};