OSDN Git Service

[Refactor] #1621 デバッグ用tvalリストを静的配列からvectorに変換した
[hengbandforosx/hengbandosx.git] / src / wizard / tval-descriptions-table.h
1 #pragma once
2
3 #include "system/angband.h"
4 #include <vector>
5
6 /*!
7  * ベースアイテムの大項目IDの種別名をまとめる構造体 / A structure to hold a tval and its description
8  */
9 typedef struct tval_desc {
10     int tval; /*!< 大項目のID */
11     concptr desc; /*!< 大項目名 */
12 } tval_desc;
13
14 extern const std::vector<tval_desc> tvals;
15 extern const std::vector<char> listsym;