mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +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);
|
||
|
}
|