8 lines
302 B
C#
Raw Permalink Normal View History

using UnityEngine;
public interface ICarComponents
{
void SuspensionForce(float distance = 0, Transform tireTransform = null);
void SteeringForce(Transform tireTransform = null);
void AccelerationForce(float accelInput = 0, Transform tireTransform = null, Transform tireMesh = null);
}