eventhandler: init #6

This commit is contained in:
Vasily Davydov
2022-09-21 10:39:29 +03:00
parent 7a49f9e808
commit f9516c6977
4 changed files with 309 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*
* EventHandler.h
*
* Created on: Sep 21, 2022
* Author: tylen
*/
#ifndef EVENTHANDLER_H_
#define EVENTHANDLER_H_
class EventHandler {
public:
EventHandler();
virtual ~EventHandler();
};
#endif /* EVENTHANDLER_H_ */