zengine/engine/include/editor/panel/menu_bar_panel.h

8 lines
196 B
C
Raw Normal View History

2024-12-17 20:57:52 +08:00
#pragma once
#include "render/editor_system.h"
namespace api {
class MenuBarPanel : public EditorPanel {
public:
2024-12-19 17:23:52 +08:00
void DrawPanel(FrameGraph& graph, RenderEditorContext& context) override;
2024-12-17 20:57:52 +08:00
};
}