mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
16 lines
280 B
C#
16 lines
280 B
C#
#nullable disable
|
|
|
|
namespace Dalamud.Bindings.ImGui
|
|
{
|
|
using HexaGen.Runtime;
|
|
|
|
public static unsafe partial class ImGuiP
|
|
{
|
|
internal static FunctionTable funcTable;
|
|
|
|
static ImGuiP()
|
|
{
|
|
funcTable = ImGui.funcTable;
|
|
}
|
|
}
|
|
}
|