コード例 #1
0
ファイル: Graph.cs プロジェクト: ObeA/intersection-simulator
 public IEnumerable <Node> GetRoute(SpawnpointNode a, Node b)
 {
     // Some pathfinding here
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Graph.cs プロジェクト: ObeA/intersection-simulator
 public void AddNode(SpawnpointNode node)
 {
     Spawnpoints.Add(node);
 }