Skip to content
Snippets Groups Projects
Input.hpp 249 B
Newer Older
PoloNX's avatar
PoloNX committed
#pragma once
#include <SDL.h>
#include <SDL_image.h>

#include "Cursor.hpp"

class Input{
private:
    SDL_Event event;
    int inputValue = -1;
public:
    Input();
    int checkInput();
    int getInputValue(){
        return inputValue;
    }

};