mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
13 lines
262 B
C#
13 lines
262 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct ImAnimEaseDesc
|
|
{
|
|
public ImAnimEaseType Type;
|
|
public float P0;
|
|
public float P1;
|
|
public float P2;
|
|
public float P3;
|
|
}
|