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

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();
}
}