Files
b_engine/src/ui/UIMenuBar.h
2026-05-14 23:16:16 -04:00

20 lines
366 B
C++

//
// Created by slinky on 5/11/26.
//
#ifndef B_ENGINE_UIMENUBAR_H
#define B_ENGINE_UIMENUBAR_H
#include "IUIPanel.h"
class UIMenuBar : public IUIPanel {
public:
void update(EditorContext &context) override;
std::function<void(entt::entity)> create_entity;
std::function<void(std::string_view path)> open_project;
};
#endif //B_ENGINE_UIMENUBAR_H