summaryrefslogtreecommitdiff
path: root/gfx/inputHandler.h
blob: 5b426c7669eef035364e26f852c4db33385209b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef INPUT_HANDLER_H
#define INPUT_HANDLER_H

#include <special_members.hpp>

union SDL_Event;

class InputHandler {
public:
	InputHandler() = default;
	virtual ~InputHandler() = default;

	DEFAULT_MOVE_COPY(InputHandler);

	virtual bool handleInput(SDL_Event &) = 0;
};

#endif