OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / player-info / smith-data-type.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 #include <map>
6
7 enum class SmithEssenceType : int16_t;
8
9 struct smith_data_type {
10     std::map<SmithEssenceType, int16_t> essences{};
11 };