mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-14 15:53:32 +01:00
14 lines
196 B
C++
14 lines
196 B
C++
// sdl2-sample.cpp : SDL2 example - initialize and quit
|
|
//
|
|
|
|
#include <tchar.h>
|
|
#include "SDL.h"
|
|
|
|
int _tmain(int argc, _TCHAR* argv[])
|
|
{
|
|
SDL_Init(SDL_INIT_EVERYTHING);
|
|
SDL_Quit();
|
|
return 0;
|
|
}
|
|
|