mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-11-01 16:56:03 +03: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();
|
|
}
|