OSDN Git Service

[Refactor] #40413 Adjusted inclusion for alloc-entry-definition.h
[hengband/hengband.git] / src / monster-race / monster-race.c
1 #include "system/angband.h"
2 #include "monster-race/monster-race.h"
3
4 monster_race *r_info;
5 char *r_name;
6 char *r_text;
7
8 /*
9  * The size of "alloc_race_table" (at most max_r_idx)
10  */
11 s16b alloc_race_size;
12
13 /*
14  * The entries in the "race allocator table"
15  */
16 alloc_entry *alloc_race_table;
17
18 /*
19  * Maximum number of monsters in r_info.txt
20  */
21 MONRACE_IDX max_r_idx;