11 lines
219 B
C++
11 lines
219 B
C++
|
#include "shader.hpp"
|
||
|
|
||
|
namespace hibis {
|
||
|
Shader::Shader(std::string vertexShaderPath, std::string fragShaderPath) {
|
||
|
mShaderPaths[0] = vertexShaderPath;
|
||
|
mShaderPaths[1] = fragShaderPath;
|
||
|
}
|
||
|
|
||
|
Shader::~Shader() {}
|
||
|
}
|