2026-05-11 22:24:47 -05:00
|
|
|
//
|
|
|
|
|
// 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;
|
2026-05-14 23:16:16 -04:00
|
|
|
std::function<void(std::string_view path)> open_project;
|
2026-05-11 22:24:47 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //B_ENGINE_UIMENUBAR_H
|