You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/**
|
|
|
|
|
* @file minitext.h
|
|
|
|
|
*
|
|
|
|
|
* Interface of scrolling dialog text.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __MINITEXT_H__
|
|
|
|
|
#define __MINITEXT_H__
|
|
|
|
|
|
|
|
|
|
DEVILUTION_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern bool qtextflag;
|
|
|
|
|
|
|
|
|
|
void FreeQuestText();
|
|
|
|
|
void InitQuestText();
|
|
|
|
|
void InitQTextMsg(int m);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Draw the quest dialog window decoration and background.
|
|
|
|
|
*/
|
|
|
|
|
void DrawQTextBack(CelOutputBuffer out);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Draw the quest dialog window text.
|
|
|
|
|
*/
|
|
|
|
|
void DrawQText(CelOutputBuffer out);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
DEVILUTION_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
#endif /* __MINITEXT_H__ */
|