I haven't posted for a long time. Tho im soo close to getting my 1 year of service on this forum.
So on when i get my 1 year ill do something and prolly something stupid
Here is a EWW ImGui menu lol
So on when i get my 1 year ill do something and prolly something stupid
Here is a EWW ImGui menu lol
Code:
ImGui::Begin("EWW"); // Create a window called "Hello, world!" and append into it.
ImGui::SetWindowPos("EWWe", ImVec2(150, 150));
ImGui::SetWindowSize("EWWe", ImVec2((float)500, (float)200));
static int tabb = 0;
{ImGui::SameLine();
if (ImGui::Button("Visuals", ImVec2(150, 25)))
{
tabb = 0;
}
ImGui::SameLine();
if (ImGui::Button("Aimbot", ImVec2(150, 25)))
{
tabb = 1;
}
ImGui::SameLine();
if (ImGui::Button("Misc", ImVec2(150, 25)))
{
tabb = 2;
}
}
ImGui::Separator();
if (tabb == 0) {
ImGui::Checkbox("Toggle oof");
}
else if (tabb == 1) {
ImGui::Checkbox("Toggle oof");
}
else if (tabb == 2) {
ImGui::Checkbox("Show Real Time");
ImGui::Checkbox("Show FPS");
}
ImGui::End();