Files
flippr-code/FlippR-Driver/src/utilities/IEventHandler.h
Jonas Zeunert 6650b38d2e aaah
2018-07-10 22:20:29 +02:00

22 lines
393 B
C++

/*
* 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.h"
class IEventHandler
{
public:
virtual ~IEventHandler(){};
virtual void handle(Input::Event& event) = 0;
};
#endif /* SRC_IEVENTHANDLER_H_ */