backing up

This commit is contained in:
2020-12-10 20:07:23 -07:00
parent 927fd0f64d
commit 63f158afd9
18 changed files with 268 additions and 77 deletions

View File

@@ -0,0 +1,15 @@
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);
}
}