summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.h
blob: 674aaa1257dddc6235c5a1dae5a3461cab199c71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 *  File:       monspeak.h
 *  Summary:    Functions to handle speaking monsters
 */

#ifndef MONSPEAK_H
#define MONSPEAK_H

#include "externs.h"

bool mons_speaks(monsters *monster);
bool mons_speaks_msg(monsters *monster, const std::string &msg,
                     const msg_channel_type def_chan = MSGCH_TALK,
                     const bool silence = false);

#endif