2024-11-19 11:48:21 +01:00

13 lines
367 B
C#

namespace Gley.UrbanSystem.Internal
{
/// <summary>
/// Used to set the intersection on waypoint
/// </summary>
public interface IIntersection
{
bool IsPathFree(int waypointIndex);
void VehicleLeft(int vehicleIndex);
void VehicleEnter(int vehicleIndex);
void PedestrianPassed(int agentIndex);
}
}