Vehicle Wheel interface
struct IVehicleWheel { };
IVehicleSystem.h
Interface providing wheel-specific access
virtual ~IVehicleWheel();
virtual const pe_cargeomparams* GetCarGeomParams() const = 0;
virtual float GetSlipFrictionMod(float slip) const = 0;
virtual int GetSlot() const = 0;
virtual float GetTorqueScale() const = 0;
virtual int GetWheelIndex() const = 0;