This commit is contained in:
pmagixc 2024-09-29 22:10:51 +03:00
parent 8e30b0033d
commit 8119b3e4de

View File

@ -222,24 +222,23 @@ int main(int, char**)
ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None; ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None;
if (ImGui::BeginTabBar("top secret", tab_bar_flags)) if (ImGui::BeginTabBar("top secret", tab_bar_flags))
{ {
if (ImGui::BeginTabItem("top secret"))
if (ImGui::BeginTabItem("top secret government tools"))
{ {
ImGui::SetCursorPos(ImVec2(ImGui::GetWindowWidth() - ImGui::CalcTextSize("X").x - 10, 23));
ImGui::SameLine();
ImGui::Button("close");
if (ImGui::IsItemClicked()) {
exit(0);
};
ImGui::Checkbox("disable france", &disable_france); ImGui::Checkbox("disable france", &disable_france);
ImGui::SliderInt("time to disable (in decades)", &time, 0, 31); ImGui::SliderInt("time to disable (in decades)", &time, 0, 31);
if (ImGui::Button("show output")) { if (ImGui::Button("show output")) {
show_output = true; show_output = true;
} }
ImGui::EndTabItem();
}
if (ImGui::BeginTabItem("mafia tools"))
{
ImGui::PushFont(iconfont); ImGui::PushFont(iconfont);
ImGui::Text("k"); ImGui::Text("k");
ImGui::PopFont(); ImGui::PopFont();
ImGui::SameLine(); ImGui::SameLine();
if (ImGui::Button("download badass mafia toolbar")) if (ImGui::Button("add badass mafia toolbar to internet explorer"))
ImGui::OpenPopup("success"); ImGui::OpenPopup("success");
if (ImGui::BeginPopupModal("success", NULL)) if (ImGui::BeginPopupModal("success", NULL))
{ {
@ -248,9 +247,49 @@ int main(int, char**)
ImGui::CloseCurrentPopup(); ImGui::CloseCurrentPopup();
ImGui::EndPopup(); ImGui::EndPopup();
} }
ImGui::Separator();
ImGui::PushFont(iconfont);
ImGui::Text("k");
ImGui::PopFont();
ImGui::SameLine();
if (ImGui::Button("install Gratis pobierz Descargar Download manager kup teraz Windows7 Repair tool"))
ImGui::OpenPopup("repair");
if (ImGui::BeginPopupModal("repair", NULL))
{
ImGui::Text("successfully installed polish windows 7 repair tool.");
if (ImGui::Button("Close"))
ImGui::CloseCurrentPopup();
ImGui::EndPopup();
}
ImGui::Separator();
ImGui::PushFont(iconfont);
ImGui::Text("k");
ImGui::PopFont();
ImGui::SameLine();
if (ImGui::Button("install Facebook Blaster Pro Tool"))
ImGui::OpenPopup("blast");
if (ImGui::BeginPopupModal("blast", NULL))
{
ImGui::Text("successfully blasted your Facebook");
if (ImGui::Button("Close"))
ImGui::CloseCurrentPopup();
ImGui::EndPopup();
}
ImGui::Image((void*)kup, ImVec2(kup_img_width, kup_img_height)); ImGui::Image((void*)kup, ImVec2(kup_img_width, kup_img_height));
ImGui::Separator();
ImGui::ProgressBar(-1.0f * (float)ImGui::GetTime(), ImVec2(0.0f, 0.0f), "automatically downloading all tools without your consent...");
ImGui::SameLine();
ImGui::Button("stop download");
if (ImGui::IsItemClicked()) {
exit(0);
};
ImGui::EndTabItem(); ImGui::EndTabItem();
} }
ImGui::SameLine();
ImGui::Button("close");
if (ImGui::IsItemClicked()) {
exit(0);
};
} }
ImGui::EndTabBar(); ImGui::EndTabBar();
} }