summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.h
blob: 94b494dee4db45aaedc6bf1f55fe9ea7f01e4bdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 *  File:       monspeak.h
 *  Summary:    Functions to handle speaking monsters
 *
 *  Modified for Crawl Reference by $Author$ on $Date$
 */

#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