Add chess GUI and move generation

This commit is contained in:
2026-05-19 16:05:53 -08:00
parent b36f5b0b84
commit 4131c93f99
69 changed files with 80468 additions and 218 deletions
+5 -1
View File
@@ -1,7 +1,11 @@
#version 450
layout(location=0) in vec2 in_position;
layout(location = 0) in vec2 in_position;
layout(location = 1) in vec4 in_color;
layout(location = 0) out vec4 frag_color;
void main() {
gl_Position = vec4(in_position, 0.0, 1.0);
frag_color = in_color;
}