Files
Seele/src/Engine/Graphics/Graphics.cpp
T
2023-11-05 10:36:01 +01:00

16 lines
194 B
C++

#include "Graphics.h"
#include "Shader.h"
#include "Graphics.h"
using namespace Seele::Gfx;
Graphics::Graphics()
{
shaderCompiler = new ShaderCompiler(this);
}
Graphics::~Graphics()
{
}