summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/l_dgn.cc1
-rw-r--r--crawl-ref/source/maps.h8
2 files changed, 6 insertions, 3 deletions
diff --git a/crawl-ref/source/l_dgn.cc b/crawl-ref/source/l_dgn.cc
index e87089a32a..81a4939a25 100644
--- a/crawl-ref/source/l_dgn.cc
+++ b/crawl-ref/source/l_dgn.cc
@@ -10,6 +10,7 @@
#include "colour.h"
#include "coord.h"
#include "directn.h"
+#include "dungeon.h"
#include "env.h"
#include "l_defs.h"
#include "mapmark.h"
diff --git a/crawl-ref/source/maps.h b/crawl-ref/source/maps.h
index 382dee0c5f..e3f902a23a 100644
--- a/crawl-ref/source/maps.h
+++ b/crawl-ref/source/maps.h
@@ -8,12 +8,14 @@
#ifndef MAPS_H
#define MAPS_H
-#include "dlua.h"
-#include "dungeon.h"
-
#include <vector>
+#include "mapdef.h" // for typedef depth_ranges
+
+struct level_range;
class map_def;
+struct map_file_place;
+struct vault_placement;
int vault_main(vault_placement &vp, const map_def *vault,
bool check_place = false);