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

#include "h-basic.h"

/**
 * 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. */
};