deprussian

Results 1 comments of deprussian

Also here another way with the ImGui::Button ``` bool isButtonPressed = false; //Global Variable if (menu) { ImGui::NewFrame(); ImGui::Begin("Some Main Menu Frame Name"); if (ImGui::Button("ButtonName") { isButtonPressed = !isButtonPressed; }...