Debug.cpp #include ".\debug.h" #include "./global.h" CDebug::CDebug(void) :m_nLastFrame(0) ,m_nFPS(0) ,m_nCalcFrame(0) ,m_hDC(NULL) { memset(this->m_sFPS, 0 ,sizeof(this->m_sFPS)); } CDebug::~CDebug(void) { ReleaseDC(g_hWnd, this->m_hDC); } bool CDebug::Init(void) { if(!this->m_hDC) { this->m_hDC = GetDC(g_hWnd); } return true; } bool CDebug::Release(void) { return true; } bool CDebug::Calculate..