12 lines
281 B
C++
12 lines
281 B
C++
#ifndef EVENTHANDLER_H_
|
|
#define EVENTHANDLER_H_
|
|
|
|
class EventHandler {
|
|
public:
|
|
virtual ~EventHandler() {}
|
|
|
|
virtual bool buttonPress(unsigned int button) {return false;}
|
|
virtual bool buttonRelease(unsigned int button) {return false;}
|
|
};
|
|
|
|
#endif /*EVENTHANDLER_H_*/
|