OSDN Git Service

[Refactor] #3733 optional 型の値取得処理 value() を撤廃した その3
[hengbandforosx/hengbandosx.git] / src / market / bounty-type-definition.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 enum class MonsterRaceId : int16_t;
6
7 struct bounty_type {
8     MonsterRaceId r_idx; //!< 賞金首の対象のモンスター種族ID
9     bool is_achieved; //!< 死体を渡して報酬を獲得したかどうか
10 };