private void ColorPath(List <IntVector2> path, Color color) { for (int i = 0; i < path.Count; i++) { _levelManager.ColorCell(path[i], color); } }