video - https://streamable.com/24bof1
void Client::DrawHUD() {
int ms = std::max(0, (int)std::round(g_cl.m_latency * 1000.f));
int rate = (int)std::round(1.f / g_csgo.m_globals->m_interval);
Color color = g_gui.m_color;
time_t t = std::time(nullptr);
std::ostringstream...