mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2026-03-24 17:05:50 +01:00
8 lines
207 B
C#
8 lines
207 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace ImGuiNET
|
|
{
|
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
public unsafe delegate int ImGuiInputTextCallback(ImGuiInputTextCallbackData* data);
|
|
}
|