コード例 #1
0
ファイル: Train.cs プロジェクト: RobinvHoof/Proftaak2
 public bool NeedsToGoRight()
 {
     return(rail.GetIndex() < route[nextDestination].GetPosition());
 }
コード例 #2
0
 /// <summary>
 /// Checks if train needs to go forward to reach the next destination on his route
 /// </summary>
 /// <returns></returns>
 public bool NeedsToGoForward()
 {
     return(rail.GetIndex() < route[nextDestination].GetRailIndex());
 }