namespace Gley.TrafficSystem.Internal { /// /// Each traffic participant outside Traffic System should implement this interface so the traffic cars could overtake it. /// public interface ITrafficParticipant { //returns the rb.velocity public float GetCurrentSpeedMS(); } }