1
0
Fork 0
breakout/main.cpp

23 lines
525 B
C++

#include <iostream>
#include <unistd.h>
#include "SDL2/SDL.h"
int main(int argc, char const *argv[])
{
if (SDL_Init(SDL_INIT_VIDEO) != 0){
std::cout << "SDL_Init Error: " << SDL_GetError() << std::endl;
return 1;
}
SDL_Window *win = SDL_CreateWindow("Hello World!", 100, 100, 640, 480, SDL_WINDOW_SHOWN);
if (win == nullptr) {
std::cout << "SDL_CreateWindow Error: " << SDL_GetError() << std::endl;
SDL_Quit();
return 1;
}
usleep(10000000);
return 0;
}