13 lines
367 B
C#
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);
|
|
}
|
|
} |