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.
24 lines
427 B
24 lines
427 B
/** |
|
* @file debug.h |
|
* |
|
* Interface of debug functions. |
|
*/ |
|
#pragma once |
|
|
|
namespace devilution { |
|
|
|
extern BYTE *pSquareCel; |
|
|
|
void FreeDebugGFX(); |
|
void CheckDungeonClear(); |
|
void LoadDebugGFX(); |
|
void GiveGoldCheat(); |
|
void TakeGoldCheat(); |
|
void MaxSpellsCheat(); |
|
void SetAllSpellsCheat(); |
|
void PrintDebugPlayer(bool bNextPlayer); |
|
void PrintDebugQuest(); |
|
void GetDebugMonster(); |
|
void NextDebugMonster(); |
|
|
|
}
|
|
|