Optimal path generated for square cells

This commit is contained in:
2020-12-14 18:23:25 -07:00
parent d63066c150
commit 80ea690330
4 changed files with 15 additions and 15 deletions

View File

@@ -1,15 +0,0 @@
using System;
namespace ConsoleApp.Maps
{
public class Direction
{
public static Tuple<int, int> Forward => _forward;
public static Tuple<int, int> Reverse => _reverse;
private static Tuple<int,int> _forward = new Tuple<int, int>(1, 0);
private static Tuple<int,int> _reverse = new Tuple<int, int>(-1, 0);
}
}

View File

@@ -0,0 +1,7 @@
namespace ConsoleApp.Maps
{
public enum Direction
{
}
}