entity editor, scene graph viewer, scene viewer basics done. Can rotate, translate and scale selected models.
This commit is contained in:
18
src/ui/IUIPanel.h
Normal file
18
src/ui/IUIPanel.h
Normal file
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// Created by slinky on 5/11/26.
|
||||
//
|
||||
|
||||
#ifndef B_ENGINE_IUIPANEL_H
|
||||
#define B_ENGINE_IUIPANEL_H
|
||||
|
||||
#include "EditorContext.h"
|
||||
|
||||
class IUIPanel {
|
||||
public:
|
||||
virtual ~IUIPanel() = default;
|
||||
virtual void update(EditorContext& context) = 0;
|
||||
bool IsOpen = true;
|
||||
bool HasFocus = true;
|
||||
};
|
||||
|
||||
#endif //B_ENGINE_IUIPANEL_H
|
||||
Reference in New Issue
Block a user