souleng
Game engine providing full Python scripting support
Loading...
Searching...
No Matches
PySDLWrappers.hpp
1#include <SDL3/SDL.h>
2#include <string>
3
6inline void py_SDL_Log(std::string s) { SDL_Log("%s", s.c_str()); }
7
10inline long py_SDL_GetTicks() { return SDL_GetTicks(); }
11