mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
Add ImAnim bindings
This commit is contained in:
parent
e8485dee25
commit
2b5e2893c5
43 changed files with 4852 additions and 3 deletions
15
imgui/Dalamud.Bindings.ImAnim/Structs/ImAnimDragFeedback.cs
Normal file
15
imgui/Dalamud.Bindings.ImAnim/Structs/ImAnimDragFeedback.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue