Changeset 1219 for code/trunk/src/core/InputBuffer.h
- Timestamp:
- May 2, 2008, 10:44:57 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/InputBuffer.h
r1214 r1219 35 35 #include <list> 36 36 37 #ifdef WIN32 38 #include <OIS/OISKeyboard.h> 39 #else 40 #include <OISKeyboard.h> 41 #endif 37 #include "ois/OISKeyboard.h" 38 #include "InputHandler.h" 42 39 43 40 namespace orxonox … … 46 43 {}; 47 44 48 class _CoreExport InputBuffer : public OIS::KeyListener45 class _CoreExport InputBuffer : public KeyHandler 49 46 { 50 47 struct InputBufferListenerTuple … … 115 112 bool keyPressed(const OIS::KeyEvent &e); 116 113 bool keyReleased(const OIS::KeyEvent &e); 114 bool keyHeld(const OIS::KeyEvent &e) { return true; } 117 115 118 116 OIS::Keyboard* keyboard_;
Note: See TracChangeset
for help on using the changeset viewer.