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

main.c 306B

12345678910111213141516
  1. //#bb pkgs := sdl2
  2. #include <SDL.h>
  3. #include "constants.h"
  4. int main() {
  5. SDL_Init(SDL_INIT_VIDEO);
  6. SDL_Window *win = SDL_CreateWindow(k_window_title,
  7. SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
  8. k_window_width, k_window_height, 0);
  9. SDL_Delay(5000);
  10. SDL_DestroyWindow(win);
  11. SDL_Quit();
  12. }