public MapService(List <List <int> > mockMap)
 {
     MeshCreator = new MapMeshCreator();
     Map         = mockMap;
     Width       = Map.Count;
     Height      = Map[0].Count;
     Variation   = 1;
 }
 public MapService()
 {
     MeshCreator = new MapMeshCreator();
 }