OSDN Git Service

[Refactor] #37353 vault_type と関連配列を rooms-vault.c/h へ移動。
[hengband/hengband.git] / src / rooms-vault.h
1 /*
2  * Information about "vault generation"
3  */
4
5 typedef struct vault_type vault_type;
6
7 struct vault_type
8 {
9         STR_OFFSET name;        /* Name (offset) */
10         STR_OFFSET text;        /* Text (offset) */
11
12         ROOM_IDX typ;           /* Vault type */
13         PROB rat;                       /* Vault rating (unused) */
14         POSITION hgt;           /* Vault height */
15         POSITION wid;           /* Vault width */
16 };
17
18 extern vault_type *v_info;
19 extern char *v_name;
20 extern char *v_text;
21
22 extern bool build_type7(void);
23 extern bool build_type8(void);
24 extern bool build_type10(void);
25 extern bool build_type17(void);
26