aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/SDLApp.hpp
blob: 92a4e2722913a63fb4a70d3a27cc823fe6290f91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef SDLAPP_HPP
#define SDLAPP_HPP

#include <SDL2/SDL.h>

class SDLApp {
public:
    SDLApp(int windowWidth, int windowHeight);
    ~SDLApp();

    bool initialize();
    void handleEvents(bool& running);
    void clearScreen();
    void presentScreen();
    void drawSquare(int x, int y, int size);
    void cleanUp();

private:
    int windowWidth;
    int windowHeight;
    SDL_Window* window;
    SDL_Renderer* renderer;
};

#endif