OSDN Git Service

[Fix] 消去時に画面右端までの消去されないことがある
[hengbandforosx/hengbandosx.git] / src / io / gf-descriptions.h
1 #pragma once
2
3 #include <string>
4 #include <vector>
5
6 enum class AttributeType;
7 struct named_num {
8     std::string name; /* The name of this thing */
9     AttributeType num; /* A number associated with it */
10 };
11
12 extern const std::vector<named_num> gf_descriptions;