mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 19:22:30 +00:00
9 lines
146 B
C
9 lines
146 B
C
|
|
#include "SDL.h"
|
||
|
|
#include "SDL_main.h"
|
||
|
|
|
||
|
|
void inc_sdl_noslash(void) {
|
||
|
|
SDL_SetMainReady();
|
||
|
|
SDL_Init(SDL_INIT_EVERYTHING);
|
||
|
|
SDL_Quit();
|
||
|
|
}
|