-
Автор темы
- #1
Код:
static int switchTabs = 3;
if (ImGui :: Button ("Aimbot", ImVec2 (100.0f, 0.0f)))
switchTabs = 0;
ImGui :: SameLine ();
if (ImGui :: Button ("Visuals", ImVec2 (100.0f, 0.0f))) switchTabs = 1;
ImGui :: SameLine (0.0, 2.0f);
if (ImGui :: Button ("Misc", ImVec2 (100.0f, 0.0f)))
switchTabs = 2;
switch (switchTabs) {
case 0: //CASE0 = 0 = AIMBOT
{
} break;
case 1: //CASE1 = 1 = VISUALS
{
}
break;
case 2: //CASE2 = 2 = MISC
{
}
break;
}
taken from iSuckAtLife on UC
fixed by electro