17 lines
229 B
C
17 lines
229 B
C
#ifndef QJS_IMGUI_H
|
|
#define QJS_IMGUI_H
|
|
|
|
#include <SDL3/SDL.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Function to process SDL events for ImGui
|
|
void gui_input(SDL_Event *e);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // QJS_IMGUI_H
|