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.

26 lines
372 B
C

#include <SDL.h>
SDL_Event event;
int windowLoop(void){
while (1) {
SDL_PollEvent(&event);
if (event.type == SDL_QUIT) {
break;
}
loadBackgroundColor();
locLogo(10,10);
locStars(135,43);
locStars(135,83);
locStars(135,123);
locStars(135,163);
locLogo(200,200);
SDL_RenderPresent(renderer);
}
return 0;
}