forked from kaka3286/RoadRunner
23 lines
581 B
C#
23 lines
581 B
C#
namespace Gley.TrafficSystem.Internal
|
|
{
|
|
/// <summary>
|
|
/// Used to store intersection objects
|
|
/// </summary>
|
|
[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;
|
|
}
|
|
}
|
|
}
|