mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
46 lines
843 B
C#
46 lines
843 B
C#
// <auto-generated/>
|
|
|
|
using HexaGen.Runtime;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Numerics;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Dalamud.Bindings.ImGui;
|
|
|
|
public unsafe partial struct ImGuiPayload
|
|
{
|
|
public unsafe void Clear()
|
|
{
|
|
fixed (ImGuiPayload* @this = &this)
|
|
{
|
|
ImGuiNative.Clear(@this);
|
|
}
|
|
}
|
|
public unsafe void Destroy()
|
|
{
|
|
fixed (ImGuiPayload* @this = &this)
|
|
{
|
|
ImGuiNative.Destroy(@this);
|
|
}
|
|
}
|
|
public unsafe bool IsDelivery()
|
|
{
|
|
fixed (ImGuiPayload* @this = &this)
|
|
{
|
|
byte ret = ImGuiNative.IsDelivery(@this);
|
|
return ret != 0;
|
|
}
|
|
}
|
|
public unsafe bool IsPreview()
|
|
{
|
|
fixed (ImGuiPayload* @this = &this)
|
|
{
|
|
byte ret = ImGuiNative.IsPreview(@this);
|
|
return ret != 0;
|
|
}
|
|
}
|
|
}
|
|
// DISCARDED: IsDataType
|
|
|