refactored public includes

This commit is contained in:
Jonas Zeunert
2018-09-13 22:38:43 +02:00
parent b77ace536c
commit 22c5849ffd
2 changed files with 63 additions and 0 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 "Event.h"
class IEventHandler
{
public:
virtual ~IEventHandler(){};
virtual void handle(Input::Event& event) = 0;
};
#endif /* SRC_IEVENTHANDLER_H_ */