mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-15 16:23:34 +01:00
11 lines
163 B
C
11 lines
163 B
C
// SDL2 example - initialize and quit
|
|
|
|
#include "SDL2/SDL.h"
|
|
|
|
int main(int argc, char** argv){
|
|
SDL_Init(SDL_INIT_EVERYTHING);
|
|
SDL_Quit();
|
|
|
|
return 0;
|
|
}
|