12 lines
202 B
C
12 lines
202 B
C
![]() |
#ifndef EVENTHANDLER_H_
|
||
|
#define EVENTHANDLER_H_
|
||
|
|
||
|
class EventHandler {
|
||
|
public:
|
||
|
virtual ~EventHandler() {}
|
||
|
|
||
|
virtual bool buttonPress(unsigned int button) = 0;
|
||
|
};
|
||
|
|
||
|
#endif /*EVENTHANDLER_H_*/
|