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

15 lines
172 B
C++
Raw Normal View History

2020-02-05 20:58:58 +01:00
#include "Graphics.h"
2023-11-05 10:36:01 +01:00
#include "Shader.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
{
2020-10-03 11:00:10 +02:00
}
2023-11-05 10:36:01 +01:00