summaryrefslogtreecommitdiffstats
path: root/EventHandler.h
blob: 7708341eb9d2ba360cca0358578f064488b45403 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef EVENTHANDLER_H_
#define EVENTHANDLER_H_

class EventHandler {
  public:
    virtual ~EventHandler() {}
    
    virtual bool buttonPress(unsigned int button) = 0;
};

#endif /*EVENTHANDLER_H_*/