duncan
Mom and Dad were wrong!
|
00001 #ifndef CLIENT_INPUTLISTENER_H_ 00002 #define CLIENT_INPUTLISTENER_H_ 00003 00004 namespace client { 00005 00013 class InputListener { 00014 public: 00015 virtual ~InputListener() {} 00021 virtual void on_press(unsigned int key, bool repeat) {} 00027 virtual void on_release(unsigned int key, bool repeat) {} 00028 }; 00029 00030 } // namespace 00031 00032 #endif