hydrangea/include/input_manager.h

18 lines
253 B
C++

#include <SDL2/SDL.h>
#include <vector>
#ifndef INPUTMANAGER_H
#define INPUTMANAGER_H
class InputManager
{
private:
public:
static std::vector<SDL_Event>& GetFrameEvents();
static void WindowEscape();
static bool key_down;
};
#endif