Vivid
Loading...
Searching...
No Matches
FileMenu.cpp
1#include "FileMenu.h"
2
3namespace VividGUI
4{
5 void FileMenu::draw()
6 {
7 if (ImGui::BeginMenu("File"))
8 {
9 if (ImGui::MenuItem("New Scene"))
10 {
11 }
12 if (ImGui::MenuItem("Open Scene"))
13 {
14 }
15 if (ImGui::MenuItem("Save Scene"))
16 {
17 }
18 if (ImGui::MenuItem("Exit"))
19 {
20 }
21 ImGui::EndMenu();
22 }
23 }
24}
VividGUI namespace.
Definition: DockUI.h:7