Started declaring graphics resources

This commit is contained in:
Dynamitos
2020-03-06 11:32:01 +01:00
parent 328edf5196
commit df3ed3c49e
8 changed files with 150 additions and 14 deletions
+3 -6
View File
@@ -1,15 +1,12 @@
#include "SceneView.h"
#include "SceneRenderPath.h"
Seele::SceneView::SceneView()
Seele::SceneView::SceneView(Graphics* graphics)
: View(graphics)
{
renderer = new SceneRenderPath(graphics);
}
Seele::SceneView::~SceneView()
{
}
void Seele::SceneView::initRenderer()
{
renderer = new SceneRenderPath();
}