OSDN Git Service

Revert "Revert "Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband""
[hengband/hengband.git] / src / system / alloc-entries.c
1 #include "system/alloc-entries.h"
2
3 /* The size of "alloc_race_table" (at most max_r_idx) */
4 s16b alloc_race_size;
5
6 /* The entries in the "race allocator table" */
7 alloc_entry *alloc_race_table;
8
9 /* The size of "alloc_kind_table" (at most max_k_idx * 4) */
10 s16b alloc_kind_size;
11
12 /* The entries in the "kind allocator table" */
13 alloc_entry *alloc_kind_table;