Add project files.

This commit is contained in:
maxwes08
2025-08-26 16:00:58 +02:00
parent 3c864f793b
commit 1d062528aa
8 changed files with 270 additions and 0 deletions

9
Shaders/shader.frag Normal file
View File

@@ -0,0 +1,9 @@
#version 330 core
out vec4 FragColor;
in vec4 vertexColor;
void main()
{
FragColor = vertexColor;
}