OSDN Git Service

[Refactor] #39962 files.c からprocess-death.c/h を分離 / Separated process-death.c/h from...
[hengband/hengband.git] / src / floor-town.h
1 #pragma once
2
3 struct store_type;
4 typedef struct store_type store_type;
5
6
7 /*
8  * A structure describing a town with
9  * stores and buildings
10  */
11 typedef struct town_type town_type;
12 struct town_type
13 {
14         GAME_TEXT name[32];
15         u32b seed;      /* Seed for RNG */
16         store_type *store;    /* The stores [MAX_STORES] */
17         byte numstores;
18 };
19
20 extern TOWN_IDX max_towns;
21 extern town_type *town_info;