OSDN Git Service

[Refactor] #38997 in_bound() に floor_type * 引数を追加. / Add floor_type * argument to...
[hengband/hengband.git] / src / floor.c
1 #include "angband.h"
2 #include "floor.h"
3 #include "floor-save.h"
4
5 /*
6  * The array of floor [MAX_WID][MAX_HGT].
7  * Not completely allocated, that would be inefficient
8  * Not completely hardcoded, that would overflow memory
9  */
10 floor_type floor_info;
11 floor_type *current_floor_ptr = &floor_info;
12
13 /*
14  * The array of saved floors
15  */
16 saved_floor_type saved_floors[MAX_SAVED_FLOORS];
17