added a model class

This commit is contained in:
Lukian 2025-02-04 11:39:09 +01:00
parent 0bdca85075
commit 1278395851
12 changed files with 444 additions and 180 deletions

View file

@ -0,0 +1,11 @@
#version 330 core
out vec4 FragColor;
in vec2 TexCoords;
uniform sampler2D texture_diffuse1;
void main()
{
FragColor = texture(texture_diffuse1, TexCoords);
}