summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/overmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/overmap.h')
-rw-r--r--crawl-ref/source/overmap.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/overmap.h b/crawl-ref/source/overmap.h
index 7c10bd3493..e08af57ffd 100644
--- a/crawl-ref/source/overmap.h
+++ b/crawl-ref/source/overmap.h
@@ -12,9 +12,15 @@
#ifndef OVERMAP_H
#define OVERMAP_H
+#include "stash.h"
+#include <vector>
+
void seen_notable_thing( int which_thing, int x, int y );
void display_overmap();
void unnotice_labyrinth_portal();
+void unnotice_altar();
std::string overview_description_string();
+void get_matching_features(
+ const base_pattern &pattern, std::vector<stash_search_result> &results);
#endif