refactored InputName

This commit is contained in:
Jonas Zeunert
2018-05-31 17:42:43 +02:00
parent 2321f2997f
commit 01b0d990f3
8 changed files with 60 additions and 55 deletions

View File

@@ -8,8 +8,16 @@
#ifndef SRC_INPUT_INPUTDRIVER_HPP_
#define SRC_INPUT_INPUTDRIVER_HPP_
#include "EventHandler.h"
namespace Input
{
class InputDriver
{
void register_event_handler(EventHandler* handler);
void unregister_event_handler(EventHandler* handler);
};
}
#endif /* SRC_INPUT_INPUTDRIVER_HPP_ */