first commit

This commit is contained in:
Lenn
2026-01-30 22:50:09 +08:00
commit 755aadb3c7
9 changed files with 1629 additions and 0 deletions

7
shader/bg.vert Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
layout(location = 0) in vec2 aPos;
void main() {
gl_Position = vec4(aPos, 0.0, 1.0);
}