Added maps
This commit is contained in:
@@ -6,6 +6,16 @@ namespace ConsoleApp
|
||||
private int _defaultWidth;
|
||||
public int Height { get; protected set; }
|
||||
public int Width { get; protected set; }
|
||||
public SquareMap SquareMap { get; }
|
||||
public HexMap HexMap { get; }
|
||||
|
||||
|
||||
public void GenerateMaps(int x, int y)
|
||||
{
|
||||
Width = x;
|
||||
Height = y;
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public MapFactory()
|
||||
{
|
||||
@@ -14,16 +24,6 @@ namespace ConsoleApp
|
||||
Height = _defaultHeight;
|
||||
Width = _defaultWidth;
|
||||
}
|
||||
|
||||
void CreateMaps(int height, int width)
|
||||
{
|
||||
Height = height;
|
||||
Width = width;
|
||||
}
|
||||
|
||||
void CreateMaps()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user