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

10 lines
167 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"
2024-06-09 12:20:04 +02:00
2020-02-05 20:58:58 +01:00
using namespace Seele::Gfx;
2024-06-09 12:20:04 +02:00
Graphics::Graphics() { shaderCompiler = new ShaderCompiler(this); }
2020-02-05 20:58:58 +01:00
2024-06-09 12:20:04 +02:00
Graphics::~Graphics() {}