Files
flippr-code/FlippR-Driver/src/utilities/IEventHandler.h
Jonas Zeunert d027d32e2f trennen
2018-06-15 00:02:03 +02:00

22 lines
398 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() = 0;
virtual void handle(Input::Event& event) = 0;
};
#endif /* SRC_IEVENTHANDLER_H_ */