mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-22 17:32:19 -05:00
add menu from https://github.com/PurpleHato/Shipwright/tree/ResetMenu
This commit is contained in:
parent
e7c2aff97e
commit
f9b831d5c0
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user