11 lines
202 B
C++
11 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_*/
|