Hex is done and working

This commit is contained in:
2020-12-16 04:50:21 -07:00
parent f8ce6d0c83
commit e8ffbd3151
19 changed files with 1123 additions and 282 deletions

View File

@@ -1,3 +1,5 @@
using System.Collections.Generic;
namespace ConsoleApp.Maps
{
public interface IMineMap
@@ -6,5 +8,6 @@ namespace ConsoleApp.Maps
int TotalBombs { get; }
bool GetCell(int x, int y);
List<Cell> PlacedMines { get; }
}
}