OpenShaderDesigner
0.0.1
Loading...
Searching...
No Matches
Include
Editor
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
10
namespace
OpenShaderDesigner
11
{
12
13
class
MainMenuBar
14
{
15
public
:
16
virtual
void
DrawMenuBar() = 0;
17
18
friend
class
EditorSystem
;
19
20
private
:
21
void
Draw() { ImGui::BeginMainMenuBar(); DrawMenuBar(); ImGui::EndMainMenuBar(); }
22
};
23
24
}
25
26
#endif
//MAINMENUBAR_H
OpenShaderDesigner::EditorSystem
Definition
EditorSystem.h:35
OpenShaderDesigner::MainMenuBar
Definition
MainMenuBar.h:14
Generated by
1.11.0