Files
GTASource/game/debug/DebugDraw.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

27 lines
585 B
C++

/////////////////////////////////////////////////////////////////////////////////
// FILE : DebugDraw.h
// PURPOSE : To provide in game visual helpers for debugging.
// AUTHOR : G. Speirs, Adam Croston, Alex Hadjadj
// STARTED : 10/08/99
/////////////////////////////////////////////////////////////////////////////////
#ifndef INC_DEBUGDRAW_H_
#define INC_DEBUGDRAW_H_
#include "grcore/debugdraw.h"
// rage headers
#if DEBUG_DRAW
namespace DebugDraw
{
void Init();
void Shutdown();
#if __BANK
void RenderLastGen();
#endif
};
#endif // DEBUG_DRAW
#endif // INC_DEBUGDRAW_H_