Skip to content

Instantly share code, notes, and snippets.

@danirod
Created September 7, 2013 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danirod/6477486 to your computer and use it in GitHub Desktop.
Save danirod/6477486 to your computer and use it in GitHub Desktop.
Código fuente de muestra usado en el episodio 02 de la serie Desarrollo de juegos con SDL2.
#include <SDL2/SDL.h>
int main(int argc, char** argv)
{
SDL_Init(SDL_INIT_EVERYTHING);
SDL_Quit();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment