summaryrefslogtreecommitdiff
path: root/imgui_impl_raylib.h
diff options
context:
space:
mode:
Diffstat (limited to 'imgui_impl_raylib.h')
-rw-r--r--imgui_impl_raylib.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/imgui_impl_raylib.h b/imgui_impl_raylib.h
new file mode 100644
index 0000000..7167c9a
--- /dev/null
+++ b/imgui_impl_raylib.h
@@ -0,0 +1,17 @@
+#ifndef IMGUI_IMPL_RAYLIB
+#define IMGUI_IMPL_RAYLIB
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
+IMGUI_IMPL_API bool ImGui_ImplRaylib_Init();
+IMGUI_IMPL_API void ImGui_ImplRaylib_Shutdown();
+IMGUI_IMPL_API void ImGui_ImplRaylib_NewFrame();
+IMGUI_IMPL_API bool ImGui_ImplRaylib_ProcessEvent();
+
+#if defined(__cplusplus)
+}
+#endif
+
+#endif