mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
13 lines
349 B
C#
13 lines
349 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct ImAnimMorphOpts
|
|
{
|
|
public int Samples;
|
|
public bool MatchEndpoints;
|
|
public bool UseArcLength;
|
|
|
|
public static ImAnimMorphOpts Default() => new() { Samples = 64, MatchEndpoints = true, UseArcLength = true };
|
|
}
|