feat: put help into subsections

This commit is contained in:
Anna 2021-03-21 12:14:43 -04:00
parent 2806585555
commit 5d7091cfb9
1 changed files with 7 additions and 3 deletions

View File

@ -91,9 +91,13 @@ namespace Tourist {
}
if (ImGui.BeginMenu("Help")) {
ImGui.PushTextWrapPos(ImGui.GetFontSize() * 10);
ImGui.TextUnformatted("Vistas 21 to 80 require the completion of the first 20. Talk to Millith Ironheart in Old Gridania to unlock the rest.");
ImGui.PopTextWrapPos();
if (ImGui.BeginMenu("Can't unlock vistas 21 to 80")) {
ImGui.PushTextWrapPos(ImGui.GetFontSize() * 10);
ImGui.TextUnformatted("Vistas 21 to 80 require the completion of the first 20. Talk to Millith Ironheart in Old Gridania to unlock the rest.");
ImGui.PopTextWrapPos();
ImGui.EndMenu();
}
ImGui.EndMenu();
}