Microscopic Traffic Simulator
CellWalker.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace Microscopic_Traffic_Simulator___Model.CellularTopologyObjects.CellWalkers
4 {
8  abstract class CellWalker
9  {
13  protected Cell cell;
14 
19  internal CellWalker(Cell cell)
20  {
21  this.cell = cell;
22  }
23 
28  internal abstract IEnumerable<Cell> GetNext();
29  }
30 }
Abstract class for returning cells by walking through topology.
Definition: CellWalker.cs:8