OSDN Git Service

Merge pull request #716 from sikabane-works/release/3.0.0Alpha16
[hengbandforosx/hengbandosx.git] / src / market / articles-on-sale.h
1 #pragma once
2
3 #include "store/store.h"
4 #include "store/store-owners.h"
5 #include "object/tval-types.h"
6 #include "system/angband.h"
7
8 #define STORE_CHOICES   48 /* Number of items to choose stock from */
9
10 typedef struct store_stock_item_type {
11     tval_type tval;
12     OBJECT_SUBTYPE_VALUE sval;
13 } store_stock_item_type;
14
15 extern store_stock_item_type store_regular_table[MAX_STORES][STORE_MAX_KEEP];
16 extern store_stock_item_type store_table[MAX_STORES][STORE_CHOICES];