OpenShaderDesigner 0.0.1
Loading...
Searching...
No Matches
MainMenuBar.h
1//
2// Created by Maddie on 9/14/2024.
3//
4
5#ifndef MAINMENUBAR_H
6#define MAINMENUBAR_H
7
8#include <imgui-docking/imgui.h>
9
10namespace OpenShaderDesigner
11{
12
14{
15public:
16 virtual void DrawMenuBar() = 0;
17
18 friend class EditorSystem;
19
20private:
21 void Draw() { ImGui::BeginMainMenuBar(); DrawMenuBar(); ImGui::EndMainMenuBar(); }
22};
23
24}
25
26#endif //MAINMENUBAR_H
Definition EditorSystem.h:35
Definition MainMenuBar.h:14