12 lines
225 B
C#
12 lines
225 B
C#
namespace VeloX;
|
|
|
|
public struct Friction
|
|
{
|
|
public float SlipCoef { get; set; }
|
|
public float ForceCoef { get; set; }
|
|
|
|
public float Force { get; set; }
|
|
public float Slip { get; set; }
|
|
public float Speed { get; set; }
|
|
}
|