OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / floor / floor-allocation-types.h
1 #pragma once
2
3 /* Dungeon allocation "places" */
4 enum dap_type : int {
5     ALLOC_SET_CORR = 1, /* Hallway */
6     ALLOC_SET_ROOM = 2, /* Room */
7     ALLOC_SET_BOTH = 3, /* Anywhere */
8 };
9
10 /* Dungeon allocation "types" */
11 enum dungeon_allocation_type {
12     ALLOC_TYP_RUBBLE = 1, /* Rubble */
13     ALLOC_TYP_TRAP = 3, /* Trap */
14     ALLOC_TYP_GOLD = 4, /* Gold */
15     ALLOC_TYP_OBJECT = 5, /* Object */
16     ALLOC_TYP_INVIS = 6, /* Invisible wall */
17 };