forked from kaka3286/RoadRunner
11 lines
344 B
C#
11 lines
344 B
C#
namespace Gley.TrafficSystem.Internal
|
|
{
|
|
/// <summary>
|
|
/// Each traffic participant outside Traffic System should implement this interface so the traffic cars could overtake it.
|
|
/// </summary>
|
|
public interface ITrafficParticipant
|
|
{
|
|
//returns the rb.velocity
|
|
public float GetCurrentSpeedMS();
|
|
}
|
|
} |