pushing for zac

This commit is contained in:
Brady Bodily
2020-12-10 14:35:10 -07:00
parent 31a4309a47
commit 1cdf498800
19 changed files with 236 additions and 129 deletions

View File

@@ -0,0 +1,29 @@
namespace ConsoleApp
{
public class MapFactory : IMapFactory
{
private int _defaultHeight;
private int _defaultWidth;
public int Height { get; protected set; }
public int Width { get; protected set; }
public MapFactory()
{
_defaultHeight = 0;
_defaultWidth = 0;
Height = _defaultHeight;
Width = _defaultWidth;
}
void CreateMaps(int height, int width)
{
Height = height;
Width = width;
}
void CreateMaps()
{
}
}
}