mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
15 lines
345 B
C#
15 lines
345 B
C#
using System.Numerics;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct ImAnimDragFeedback
|
|
{
|
|
public Vector2 Position;
|
|
public Vector2 Offset;
|
|
public Vector2 Velocity;
|
|
public bool IsDragging;
|
|
public bool IsSnapping;
|
|
public float SnapProgress;
|
|
}
|