2021-01-15 16:15:47 -06:00
|
|
|
#include "FlatShader.h"
|
2021-01-17 18:03:09 -06:00
|
|
|
#include "flat.vert.h"
|
|
|
|
#include "flat.frag.h"
|
2021-01-15 16:15:47 -06:00
|
|
|
|
2021-01-17 18:03:09 -06:00
|
|
|
FlatShader::FlatShader() : Shader(flat_vert, flat_frag) {}
|
2021-01-20 20:49:12 -06:00
|
|
|
|
|
|
|
Name FlatShader::GetName() const {return "Flat Shader";}
|