devilutionX/Source/error.h
Anders Jenbo 3c276a3cd3 Add documentation
- Add file documentation to about 1/4 of the files in Source
- Copy over a lot of the documentation from the sanctuary/notes repo
- Standardise all the existing documentation
- Create a configuration for Doxygen
- Add more documentation (engine.cpp is now fully documented)
2020-03-01 22:18:00 +01:00

21 lines
375 B
C

/**
* @file error.h
*
* Interface of in-game message functions.
*/
#ifndef __ERROR_H__
#define __ERROR_H__
extern char msgtable[MAX_SEND_STR_LEN];
extern char msgdelay;
extern char msgflag;
extern char msgcnt;
void InitDiabloMsg(char e);
void ClrDiabloMsg();
void DrawDiabloMsg();
/* data */
extern char *MsgStrings[44];
#endif /* __ERROR_H__ */