10 lines
190 B
C#
10 lines
190 B
C#
namespace PhysicsEngine
|
|
{
|
|
public static class DragForce
|
|
{
|
|
public static void Apply(Body body, float dt)
|
|
{
|
|
body.ApplyAerodynamicDrag(dt);
|
|
}
|
|
}
|
|
} |