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.
21 lines
359 B
21 lines
359 B
/** |
|
* @file qol.h |
|
* |
|
* Quality of life features |
|
*/ |
|
#ifndef __QOL_H__ |
|
#define __QOL_H__ |
|
|
|
#include "engine.h" |
|
|
|
DEVILUTION_BEGIN_NAMESPACE |
|
|
|
void FreeQol(); |
|
void InitQol(); |
|
void DrawMonsterHealthBar(CelOutputBuffer out); |
|
void DrawXPBar(CelOutputBuffer out); |
|
void AutoGoldPickup(int pnum); |
|
|
|
DEVILUTION_END_NAMESPACE |
|
|
|
#endif /* __QOL_H__ */
|
|
|