summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.h
blob: 50473fd62971742b15854a352de6cff37c1a30da (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(const monsters *monster);
void mons_speaks_msg(const monsters *monster, const std::string &msg,
                     const msg_channel_type def_chan = MSGCH_TALK,
                     const bool silence = false);

#endif