summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/overmap.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-04 23:54:14 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-04 23:54:14 +0000
commit38cb4b1f9f75c3695a14723f129aa795a5d72b4f (patch)
tree5db52a76b76948268ca9f21216f6afc951ec96b9 /crawl-ref/source/overmap.h
parentf6ee7314cca8474b59cba7fceb8b3866957b3cb7 (diff)
downloadcrawl-ref-38cb4b1f9f75c3695a14723f129aa795a5d72b4f.tar.gz
crawl-ref-38cb4b1f9f75c3695a14723f129aa795a5d72b4f.zip
[1603670] Altars and portals can now be found by the stash search.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@569 c06c8d41-db1a-0410-9941-cceddc491573
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