You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
225 B
C

#include <SDL.h>
SDL_Event event;
int windowLoop(void){
while (1) {
SDL_PollEvent(&event);
if (event.type == SDL_QUIT) {
break;
}
loadBackgroundColor();
presentLogo();
}
return 0;
}