namespace Gley.TrafficSystem.Internal { /// /// Used to store intersection objects /// [System.Serializable] public class PriorityStopWaypoints { public int[] roadWaypoints; public float greenLightTime; public int[] pedestrianWaypoints; public int[] directionWaypoints; public PriorityStopWaypoints(int[] roadWaypoints, float greenLightTime) { this.roadWaypoints = roadWaypoints; this.greenLightTime = greenLightTime; } } }