Files
robot_intelligence_final_pr…/ConsoleApp/SimRunner.cs
Brady Bodily 42dd13f7d6 Added maps
2020-12-10 14:44:11 -07:00

17 lines
328 B
C#

namespace ConsoleApp
{
public class SimRunner : ISimRunner
{
private IMapFactory _mapFactory;
public SimRunner(IMapFactory mapFactory)
{
_mapFactory = mapFactory;
}
public void Run()
{
throw new System.NotImplementedException();
}
}
}