mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
12 lines
271 B
C#
12 lines
271 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
|
public struct ImAnimSpringParams
|
|
{
|
|
public float Mass;
|
|
public float Stiffness;
|
|
public float Damping;
|
|
public float InitialVelocity;
|
|
}
|