summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/areas.h
blob: 693b349007b3d8f9ae0bbf6788c41fad34aba76b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef AREAS_H
#define AREAS_H

void create_sanctuary(const coord_def& center, int time);
bool remove_sanctuary(bool did_attack = false);
void decrease_sanctuary_radius();

bool silenced(const coord_def& p);

// Actors within whose halo the given point is.
std::list<actor*> haloers(const coord_def &c);

#endif