Backup
This commit is contained in:
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
|
|
||||||
namespace ConsoleApp.Maps
|
namespace ConsoleApp.Maps
|
||||||
{
|
{
|
||||||
public struct HexCell
|
public struct HexCell : IHexCell
|
||||||
{
|
{
|
||||||
public int Q { get; }
|
public int Q { get; }
|
||||||
public int R { get; }
|
public int R { get; }
|
||||||
|
|||||||
@@ -17,9 +17,9 @@ namespace ConsoleApp.Maps
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<HexCell> PossibleMoves(HexCell fromCell, Direction direction, Double orientation)
|
public List<ICell> PossibleMoves(HexCell fromCell, Direction direction, Double orientation)
|
||||||
{
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace ConsoleApp.Maps
|
namespace ConsoleApp.Maps
|
||||||
{
|
{
|
||||||
public interface IHexCell
|
public interface IHexCell : ICell
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
namespace ConsoleApp.Maps
|
|
||||||
{
|
|
||||||
public interface IMapManager
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
namespace ConsoleApp.Maps
|
|
||||||
{
|
|
||||||
public class MapManager : IMapManager
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user