pathfinding_astar

This commit is contained in:
2026-06-12 17:18:05 +03:30
commit 36e7ba2008
11 changed files with 796 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#version 330 core
out vec4 FragColor;
uniform vec3 color;
void main() {
FragColor = vec4(color, 1.0);
}