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.
37 lines
610 B
37 lines
610 B
/** |
|
* @file debug.h |
|
* |
|
* Interface of debug functions. |
|
*/ |
|
#ifndef __DEBUG_H__ |
|
#define __DEBUG_H__ |
|
|
|
DEVILUTION_BEGIN_NAMESPACE |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
extern BYTE *pSquareCel; |
|
|
|
void LoadDebugGFX(); |
|
void FreeDebugGFX(); |
|
void CheckDungeonClear(); |
|
#ifdef _DEBUG |
|
void GiveGoldCheat(); |
|
void TakeGoldCheat(); |
|
void MaxSpellsCheat(); |
|
void SetAllSpellsCheat(); |
|
void PrintDebugPlayer(BOOL bNextPlayer); |
|
void PrintDebugQuest(); |
|
void GetDebugMonster(); |
|
void NextDebugMonster(); |
|
#endif |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
DEVILUTION_END_NAMESPACE |
|
|
|
#endif /* __DEBUG_H__ */
|
|
|