10 lines
167 B
C++
10 lines
167 B
C++
#include "Graphics.h"
|
|
#include "Shader.h"
|
|
|
|
|
|
using namespace Seele::Gfx;
|
|
|
|
Graphics::Graphics() { shaderCompiler = new ShaderCompiler(this); }
|
|
|
|
Graphics::~Graphics() {}
|