28{
29 if (ImGui::BeginMainMenuBar())
30 {
31 if (ImGui::BeginMenu("File"))
32 {
33 ShowFileMenu();
34 ImGui::EndMenu();
35 }
36
37 if (ImGui::BeginMenu("Options"))
38 {
39 ShowOptionsMenu();
40 ImGui::EndMenu();
41 }
42
43 if (ImGui::BeginMenu("Windows"))
44 {
45 ShowWindowsMenu();
46 ImGui::EndMenu();
47 }
48
49 if (ImGui::BeginMenu("Help"))
50 {
51 ShowHelpMenu();
52 ImGui::EndMenu();
53 }
54
55 ImGui::EndMainMenuBar();
56 }
57}