19 lines
324 B
C
19 lines
324 B
C
|
#pragma once
|
||
|
|
||
|
#include <charcoal/VertexFragmentShaderProgram.h>
|
||
|
|
||
|
namespace charcoal
|
||
|
{
|
||
|
namespace builtin
|
||
|
{
|
||
|
namespace lit
|
||
|
{
|
||
|
class ShaderProgram : public VertexFragmentShaderProgram
|
||
|
{
|
||
|
public:
|
||
|
ShaderProgram() : VertexFragmentShaderProgram(SHADER_PATH "LitVS.glsl", SHADER_PATH "LitFS.glsl") {}
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|