コード例 #1
0
ファイル: CellQueue.cs プロジェクト: flofbf/adstar-planner
 public void Enqueue(Cell cell)
 {
     m_Queue.Add(cell);
 }
コード例 #2
0
ファイル: BasePlanner.cs プロジェクト: flofbf/adstar-planner
 protected abstract void UpdateState(Cell cell);
コード例 #3
0
ファイル: AStar.cs プロジェクト: flofbf/adstar-planner
 protected override void UpdateState(Cell cell)
 {
     if (!Planner.IsCreator)
         throw new Exception("The method or operation is not implemented.");
 }