start snake centered

This commit is contained in:
ethan merchant 2024-11-09 19:51:05 -05:00
parent 659c30abcf
commit 91b3f69bf4

View file

@ -45,7 +45,7 @@ static class Mono
{ {
for (int i = 0; i < snake.Length; i++) for (int i = 0; i < snake.Length; i++)
{ {
snake[i] = new XYZi(0, 1, 0); snake[i] = new XYZi(0, 0, 0);
} }
} }