Add game framework and whitebox level

This commit is contained in:
2026-06-08 23:47:32 +08:00
parent 5525343656
commit e52cf94336
24 changed files with 778 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#version 330 core
in vec2 v_texCoord;
in vec4 v_color;
uniform sampler2D u_texture;
out vec4 FragColor;
void main() {
FragColor = texture(u_texture, v_texCoord) * v_color;
}