OSDN Git Service

[Refactor] #37353 CHECK_MULTISHADOW() と take_hit() を player-damage.c/h へ移動.
[hengband/hengband.git] / src / monsterrace.c
1 #include "angband.h"
2 #include "monsterrace.h"
3 #include "util.h"
4
5 extern monster_race *r_info;
6 extern char *r_name;
7 extern char *r_text;
8
9 /*
10  * The size of "alloc_race_table" (at most max_r_idx)
11  */
12 s16b alloc_race_size;
13
14 /*
15  * The entries in the "race allocator table"
16  */
17 alloc_entry *alloc_race_table;
18
19 /*
20  * Maximum number of monsters in r_info.txt
21  */
22 MONRACE_IDX max_r_idx;