mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
12 lines
259 B
C#
12 lines
259 B
C#
using System.Numerics;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public unsafe struct ImAnimTransform
|
|
{
|
|
public Vector2 Position;
|
|
public Vector2 Scale;
|
|
public float Rotation;
|
|
}
|