bool bOpenTimer = (bIsGuiVisible || (bC4Timer && iC4Timer));
if (g_pEsp && Settings::Esp::esp_BombTimer && bOpenTimer)
{
ImVec2 OldMinSize = ImGui::GetStyle().WindowMinSize;
ImGui::GetStyle().WindowMinSize = ImVec2(0.f, 0.f);
ImGui::SetNextWindowSize(ImVec2(115.f, 30.f));
if (ImGui::Begin("Bomb Timer", &bOpenTimer,
ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoTitleBar))
{
ImGui::Text(C4_TIMER_STRING, g_pEsp->fC4Timer);
ImGui::End();
}
ImGui::GetStyle().WindowMinSize = OldMinSize;
}