summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/overmap.h
blob: 4703d37395e6d229708359c6b895df3f05961d4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *  File:       overmap.cc
 *  Summary:    "Overmap" functionality
 *  Written by: Linley Henzell
 *
 *  Change History (most recent first):
 *
 *               <1>    --/--/--        LRH             Created
 */


#ifndef OVERMAP_H
#define OVERMAP_H

#include "stash.h"
#include <vector>

void seen_notable_thing( int which_thing, int x, int y );
bool overmap_knows_portal(dungeon_feature_type portal);
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