Adding docking support through ImGui , Adding multiviewport support through ImGui, Moving header file back into the src directory , started building the editor, Added framebuffer to renderer.
BUG: The framebuffer will not be displayed in the editor for some reason
This commit is contained in:
23
BarinkEngine/src/Scene.h
Normal file
23
BarinkEngine/src/Scene.h
Normal file
@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "Graphics/Transform.h"
|
||||
#include "Scene/Node.h"
|
||||
/*
|
||||
* Scene should be a description of a game world
|
||||
*/
|
||||
class Scene {
|
||||
|
||||
public:
|
||||
Node& GetSceneNode(std::string);
|
||||
Node& GetRoot();
|
||||
|
||||
Scene(const std::string& sceneName = "Default Scene");
|
||||
~Scene();
|
||||
|
||||
private:
|
||||
Node* root;
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user