#include "shader.hpp" namespace hibis { Shader::Shader(std::string vertexShaderPath, std::string fragShaderPath) { mShaderPaths[0] = vertexShaderPath; mShaderPaths[1] = fragShaderPath; } Shader::~Shader() {} }