summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2012-08-21 14:13:25 +0200
committerRaphael Langella <raphael.langella@gmail.com>2012-08-21 14:13:25 +0200
commit7dfd3e015ffce3f0e63dd3bb8f755d70d878d26a (patch)
treee62446ccddd46f5f9015968d1e87530862e8e7ca /crawl-ref/source/dungeon.h
parenta89b727b23f49dad9d4836d72605320883594a9e (diff)
downloadcrawl-ref-7dfd3e015ffce3f0e63dd3bb8f755d70d878d26a.tar.gz
crawl-ref-7dfd3e015ffce3f0e63dd3bb8f755d70d878d26a.zip
Change abyss_genlevel_mask from a map_mask to a map_bitmask.
Diffstat (limited to 'crawl-ref/source/dungeon.h')
-rw-r--r--crawl-ref/source/dungeon.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/dungeon.h b/crawl-ref/source/dungeon.h
index 86e6cc69d7..9ce3157994 100644
--- a/crawl-ref/source/dungeon.h
+++ b/crawl-ref/source/dungeon.h
@@ -7,6 +7,7 @@
#ifndef DUNGEON_H
#define DUNGEON_H
+#include "bitary.h"
#include "fixedarray.h"
#include "env.h"
#include "externs.h"
@@ -169,16 +170,16 @@ private:
class unwind_vault_placement_mask
{
public:
- unwind_vault_placement_mask(const map_mask *mask);
+ unwind_vault_placement_mask(const map_bitmask *mask);
~unwind_vault_placement_mask();
private:
- const map_mask *oldmask;
+ const map_bitmask *oldmask;
};
extern bool Generating_Level;
extern std::vector<vault_placement> Temp_Vaults;
-extern const map_mask *Vault_Placement_Mask;
+extern const map_bitmask *Vault_Placement_Mask;
void init_level_connectivity();
void read_level_connectivity(reader &th);