24 lines
325 B
C++
24 lines
325 B
C++
#pragma once
|
|
|
|
#include "Panel.h"
|
|
#include "UI/PopupState.h"
|
|
|
|
namespace XCEngine {
|
|
namespace Editor {
|
|
|
|
class MenuBar : public Panel {
|
|
public:
|
|
MenuBar();
|
|
void Render() override;
|
|
void RenderChrome();
|
|
void RenderOverlays();
|
|
|
|
private:
|
|
void RenderRunToolbar();
|
|
|
|
UI::DeferredPopupState m_aboutPopup;
|
|
};
|
|
|
|
}
|
|
}
|