#include "../Include/Graphics/Material.h" Material::Material(const Shader& shader) : shader(shader) { } void Material::Apply() { shader.setUniformVec3("Color", Color); }