JunctionExtras.cs 269 B

12345678910111213
  1. using Routes;
  2. using UnityEngine;
  3. namespace Roads
  4. {
  5. public class JunctionExtras : Turn
  6. {
  7. protected override Transform RoadDirectionToTransform(RoadDirection position)
  8. {
  9. throw new System.NotImplementedException();
  10. }
  11. }
  12. }