#version 330

//TODO: receive a uniform value

in vec4 smoothColor;
out vec4 fragColor;

void main()
{
	//TODO: make an animation
	//could use the vertex shader also
	
	fragColor = smoothColor;
}