mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
15 lines
302 B
C
15 lines
302 B
C
|
#ifndef IMGUI_SYSTEM_H
|
||
|
#define IMGUI_SYSTEM_H
|
||
|
|
||
|
extern bool ImguiSystem_IsInitialized();
|
||
|
|
||
|
extern bool ImguiSystem_Init();
|
||
|
extern void ImguiSystem_Shutdown();
|
||
|
|
||
|
extern void ImguiSystem_SwapBuffers();
|
||
|
|
||
|
extern void ImguiSystem_SampleFrame();
|
||
|
extern void ImguiSystem_RenderFrame();
|
||
|
|
||
|
#endif // IMGUI_SYSTEM_H
|