OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[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 };