OSDN Git Service

[Refactor] #38844 Removed inclusion of cmd-building.h from angband.h
[hengband/hengband.git] / src / market / bounty-prize-table.h
1 #pragma once
2
3 #include "object/tval-types.h"
4 #include "system/angband.h"
5 #include "world/world.h"
6
7 /*!
8  * 賞金首の報酬テーブル / List of prize object
9  */
10 typedef struct bounty_prize_type {
11     tval_type tval; /*!< ベースアイテムのメイン種別ID */
12     OBJECT_SUBTYPE_VALUE sval; /*!< ベースアイテムのサブ種別ID */
13 } bounty_prize_type;
14
15 extern bounty_prize_type prize_list[MAX_BOUNTY];