Files
Seele/src/Engine/Graphics/Graphics.cpp
T

13 lines
178 B
C++
Raw Normal View History

2020-02-05 20:58:58 +01:00
#include "Graphics.h"
2020-09-19 14:36:50 +02:00
#include "ShaderCompiler.h"
2020-02-05 20:58:58 +01:00
using namespace Seele::Gfx;
Graphics::Graphics()
2020-02-05 20:58:58 +01:00
{
2020-09-19 14:36:50 +02:00
shaderCompiler = new ShaderCompiler(this);
2020-02-05 20:58:58 +01:00
}
Graphics::~Graphics()
2020-02-05 20:58:58 +01:00
{
}