pushing for zac
This commit is contained in:
23
ConsoleApp/SimRunner.cs
Normal file
23
ConsoleApp/SimRunner.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace ConsoleApp
|
||||
{
|
||||
public class SimRunner : ISimRunner
|
||||
{
|
||||
private IMapFactory _mapFactory;
|
||||
|
||||
public SimRunner(IMapFactory mapFactory)
|
||||
{
|
||||
_mapFactory = mapFactory;
|
||||
}
|
||||
public void GenerateMaps(int x, int y)
|
||||
{
|
||||
_mapFactory.GenerateMaps(x, y);
|
||||
_mapFactory.SquareMap();
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public void StartSim()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user