ImGui::Begin("Test", &IsPressInsert, ...);
{
ImGui::BeginChild("");
{
// Vars
static const char* type_y[] = { "None", "Backwards", "..."};
// Elements
ImGui::CheckBox("AA Enable", &csgo::Get().Config.Antiaim.Active);
ImGui::ComboBox("Yaw", &csgo::Get().Config.Antiaim.Yaw, type_y, ARRAYSIZE(type_y));
ImGui::Text("Welcome to Onetap V99");
ImGui::Checkbox("FOV", &csgo::Get().Config.Visuals.Local.FOV);
ImGui::Slider("Scale FOV", &csgo::Get().Config.Visuals.Local.ScaleFOV, 0, 999);
}
ImGui::EndChild();
}
ImGui::End();