OSDN Git Service

[Refactor] #38997 beam() にplayer_type * 引数を追加 / Added player_type * argument to beam()
[hengband/hengband.git] / src / objectkind.c
1 #include "angband.h"
2 #include "util.h"
3 #include "objectkind.h"
4
5 /*
6  * The object kind arrays
7  */
8 object_kind *k_info;
9 char *k_name;
10 char *k_text;
11
12 /*
13  * Maximum number of items in k_info.txt
14  */
15 KIND_OBJECT_IDX max_k_idx;
16
17 /*
18  * The size of "alloc_kind_table" (at most max_k_idx * 4)
19  */
20 s16b alloc_kind_size;
21
22 /*
23  * The entries in the "kind allocator table"
24  */
25 alloc_entry *alloc_kind_table;
26