OSDN Git Service

Revert "Revert "Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband""
[hengband/hengband.git] / src / wizard / tval-descriptions-table.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 /*!
6  * ベースアイテムの大項目IDの種別名をまとめる構造体 / A structure to hold a tval and its description
7  */
8 typedef struct tval_desc {
9     int tval; /*!< 大項目のID */
10     concptr desc; /*!< 大項目名 */
11 } tval_desc;
12
13 #define MAX_TVAL_DESCRIPTIONS 52
14 #define MAX_DEBUG_COMMAND_SYMBOLS 63
15
16 extern tval_desc tvals[MAX_TVAL_DESCRIPTIONS];
17 extern const char listsym[MAX_DEBUG_COMMAND_SYMBOLS];