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

@@ -0,0 +1,19 @@
using System.Collections.Generic;
using ConsoleApp.Maps;
using HexCore;
namespace ConsoleApp
{
public interface ISimulationResults
{
void WriteResults();
int HexTotalMoves { get; set; }
int HexBombsFound { get; set; }
int TotalBombs { get; set; }
List<Coordinate2D> HexPath { get; set; }
List<Coordinate2D> HexMappedBombs { get; set; }
List<Cell> Mines { get; set; }
int HexClearedCells { get; set; }
int HexUnClearedCells { get; set; }
}
}