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.

18 lines
333 B
C++

#ifndef WINDOW_HPP
#define WINDOW_HPP
#include <SDL2/SDL.h>
constexpr auto WINDOW_WIDTH = 640;
constexpr auto WINDOW_HEIGHT = 480;
extern SDL_Window *window;
extern SDL_Renderer *renderer;
int sdl2Initialize();
SDL_Texture *sdl2LoadTexture(const char *path);
SDL_Surface *sdl2LoadSolid(const char *path);
#endif // WINDOW_HPP