Created Mine Map and ReactivePlanner

This commit is contained in:
2020-12-15 18:19:07 -07:00
parent 45eca3b572
commit 4edcef4664
24 changed files with 309 additions and 84 deletions

View File

@@ -2,16 +2,22 @@ using System;
namespace ConsoleApp.Maps
{
public enum Coverage
{
Uncoverd,
Covered
}
public struct Cell : ICell
{
public int X { get; }
public int Y { get; }
public Coverage Coverage { get; set; }
public Cell(int x, int y)
{
X = x;
Y = y;
Coverage = Coverage.Uncoverd;
}