Changeset 1066 for code/trunk/src/core/InputManager.cc
- Timestamp:
- Apr 14, 2008, 10:50:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/InputManager.cc
r1062 r1066 38 38 #include "InputEventListener.h" 39 39 #include "InputHandler.h" 40 #include "InputBuffer.h" 40 41 41 42 namespace orxonox 42 43 { 43 /**44 @brief The reference to the singleton45 */46 //InputManager* InputManager::singletonRef_s = 0;47 48 44 /** 49 45 @brief Constructor only resets the pointer values to 0. … … 126 122 this->handlerGUI_ = new InputHandlerGUI(); 127 123 this->handlerGame_ = new InputHandlerGame(); 124 //this->handlerBuffer_ = new InputBuffer(); 128 125 this->handlerGame_->loadBindings(); 129 126 … … 244 241 } 245 242 243 void InputManager::feedInputBuffer(InputBuffer* buffer) 244 { 245 this->handlerBuffer_ = buffer; 246 } 247 248 246 249 }
Note: See TracChangeset
for help on using the changeset viewer.