mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
15 lines
225 B
C
15 lines
225 B
C
#ifndef ISLEDEBUG_H
|
|
#define ISLEDEBUG_H
|
|
|
|
extern bool g_debugEnabled;
|
|
|
|
typedef union SDL_Event SDL_Event;
|
|
|
|
extern void IsleDebug_Init();
|
|
|
|
extern bool IsleDebug_Event(SDL_Event* event);
|
|
|
|
extern void IsleDebug_Render();
|
|
|
|
#endif
|