zengine/engine/include/editor/panel/menu_bar_panel.h
2024-12-17 20:57:52 +08:00

8 lines
149 B
C++

#pragma once
#include "render/editor_system.h"
namespace api {
class MenuBarPanel : public EditorPanel {
public:
void DrawPanel() override;
};
}