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
+2 -1
View File
@@ -1,7 +1,8 @@
#version 450
layout(location = 0) in vec4 frag_color;
layout(location = 0) out vec4 out_color;
void main() {
out_color = vec4(0.1, 0.8, 1.0, 1.0);
out_color = frag_color;
}