TazGraph Project v0.1.0
Loading...
Searching...
No Matches
ScenePanel.h
1#pragma once
2
3
4#include "../../../UIElement.h"
5
7 IScene* scene;
8};
9
10class ScenePanel : public UIElement
11{
12private:
13 ScenePanelConfig config;
14public:
15 bool showScenePanel = false;
16 ScenePanel() {
17 }
18 void setConfig(const ScenePanelConfig& cfg) { config = cfg; }
19 void update(float deltaTime) override;
20 void OnImGuiRender() override;
21};
Definition IScene.h:25
Definition ScenePanel.h:11
Definition UIElement.h:16
Definition ScenePanel.h:6