mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 09:19:57 +01:00
19 lines
222 B
C
19 lines
222 B
C
#ifndef OST_WRAPPER_H
|
|
#define OST_WRAPPER_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include <SDL.h>
|
|
|
|
void draw_ost_device(SDL_Renderer *renderer, double deltaTime);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // OST_WRAPPER_H
|