devilutionX/Source/error.h
2021-04-06 15:21:25 +02:00

27 lines
364 B
C++

/**
* @file error.h
*
* Interface of in-game message functions.
*/
#pragma once
#include "engine.h"
namespace devilution {
#ifdef __cplusplus
extern "C" {
#endif
extern DWORD msgdelay;
extern char msgflag;
void InitDiabloMsg(char e);
void ClrDiabloMsg();
void DrawDiabloMsg(CelOutputBuffer out);
#ifdef __cplusplus
}
#endif
}