OSDN Git Service

[Refactor] EFFECT_IDの削除
[hengbandforosx/hengbandosx.git] / src / room / room-info-table.h
1 #pragma once
2
3 #include "room/room-types.h"
4 #include "system/angband.h"
5
6 /* Room type information */
7 typedef struct room_info_type {
8     int16_t prob[ROOM_T_MAX]; /* Allocation information. */
9     byte min_level; /* Minimum level on which room can appear. */
10 } room_info_type;
11
12 extern room_info_type room_info_normal[ROOM_T_MAX];
13 extern room_type room_build_order[ROOM_T_MAX];