changed things

This commit is contained in:
Neeflix
2018-06-14 22:44:08 +02:00
parent 9a71ba938d
commit 785467a4b3
7 changed files with 72 additions and 35 deletions

View File

@@ -0,0 +1,21 @@
/*
* IEventHandler.h
*
* Created on: Jun 13, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#ifndef SRC_IEVENTHANDLER_H_
#define SRC_IEVENTHANDLER_H_
#include "../input/Event.hpp"
class IEventHandler
{
public:
virtual ~IEventHandler() = 0;
virtual void handle(Input::Event& event) = 0;
};
#endif /* SRC_IEVENTHANDLER_H_ */