summaryrefslogtreecommitdiff
path: root/imgui_impl_raylib.h
blob: 7167c9a2387218e33cf19f983ad7c16bda7f23e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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