This commit is contained in:
briaguya 2022-06-28 07:31:02 -04:00 committed by Kenix3
parent e7c2aff97e
commit f9b831d5c0
1 changed files with 9 additions and 2 deletions

View File

@ -760,8 +760,15 @@ namespace SohImGui {
ImGui::SameLine(); ImGui::SameLine();
ImGui::SetCursorPos(ImVec2(25, 0)); ImGui::SetCursorPos(ImVec2(25, 0));
} }
ImGui::Text("Shipwright"); if (ImGui::BeginMenu("Shipwright")) {
ImGui::Separator(); if (ImGui::MenuItem("Reset")) {
// TODO: RESET FROM HERE
}
if (ImGui::MenuItem("Exit")) {
// TODO: EXIT FROM HERE
}
ImGui::EndMenu();
}
if (ImGui::BeginMenu("Audio")) { if (ImGui::BeginMenu("Audio")) {
EnhancementSliderFloat("Master Volume: %d %%", "##Master_Vol", "gGameMasterVolume", 0.0f, 1.0f, "", 1.0f, true); EnhancementSliderFloat("Master Volume: %d %%", "##Master_Vol", "gGameMasterVolume", 0.0f, 1.0f, "", 1.0f, true);