velox/Code/Car/VeloXCar.Wheel.cs
2025-06-15 21:59:42 +07:00

11 lines
156 B
C#

namespace VeloX;
public partial class VeloXCar
{
private void WheelThink( in float dt )
{
foreach ( var w in Wheels )
w.Update( this, dt );
}
}