forward declaration event_handler

This commit is contained in:
Jonas Zeunert
2018-05-31 20:12:45 +02:00
parent a418777502
commit 4c593c9d29

View File

@@ -8,11 +8,15 @@
#ifndef SRC_INPUT_INPUTDRIVER_HPP_ #ifndef SRC_INPUT_INPUTDRIVER_HPP_
#define SRC_INPUT_INPUTDRIVER_HPP_ #define SRC_INPUT_INPUTDRIVER_HPP_
#include "EventHandler.hpp"
namespace Input namespace Input
{ {
class EventHandler
{
public:
void handle(Event& event);
};
class InputDriver class InputDriver
{ {