00001 /* 00002 * File: mon-speak.h 00003 * Summary: Functions to handle speaking monsters 00004 */ 00005 00006 #ifndef MONSPEAK_H 00007 #define MONSPEAK_H 00008 00009 #include "externs.h" 00010 00011 void maybe_mons_speaks(monster* mons); 00012 bool mons_speaks(monster* mons); 00013 bool mons_speaks_msg(monster* mons, const std::string &msg, 00014 const msg_channel_type def_chan = MSGCH_TALK, 00015 const bool silence = false); 00016 00017 #endif