blob: ad8392c532c90e8082f7e914f6097ac1fc0aff0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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
|