1 2 3 4 5 6 7 8 9
#pragma once #include <stdbool.h> #include <SDL2/SDL.h> SDL_Window* sdl_create_window(const char* title, int w, int h); bool sdl_init(void); void sdl_quit(void);