OSDN Git Service

[Refactor] #37353 バリアント名称とバージョン定義を core.h へ移動.
[hengband/hengband.git] / src / floor-town.h
1 #pragma once
2 #include "store.h"
3
4 /*
5  * A structure describing a town with
6  * stores and buildings
7  */
8 typedef struct town_type town_type;
9 struct town_type
10 {
11         GAME_TEXT name[32];
12         u32b seed;      /* Seed for RNG */
13         store_type *store;    /* The stores [MAX_STORES] */
14         byte numstores;
15 };
16
17 extern TOWN_IDX max_towns;
18 extern town_type *town_info;