15 lines
173 B
C++
15 lines
173 B
C++
#ifndef WC3RE_RENDER_RENDERER_HH__
|
|
#define WC3RE_RENDER_RENDERER_HH__
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
class Renderer {
|
|
public:
|
|
Renderer();
|
|
|
|
private:
|
|
SDL_Window *win;
|
|
};
|
|
|
|
#endif
|