Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2008, 10:50:08 PM (16 years ago)
Author:
rgrieder
Message:
  • TestConsole should work now
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/InputManager.cc

    r1062 r1066  
    3838#include "InputEventListener.h"
    3939#include "InputHandler.h"
     40#include "InputBuffer.h"
    4041
    4142namespace orxonox
    4243{
    43   /**
    44     @brief The reference to the singleton
    45   */
    46   //InputManager* InputManager::singletonRef_s = 0;
    47 
    4844  /**
    4945    @brief Constructor only resets the pointer values to 0.
     
    126122    this->handlerGUI_ = new InputHandlerGUI();
    127123    this->handlerGame_ = new InputHandlerGame();
     124    //this->handlerBuffer_ = new InputBuffer();
    128125    this->handlerGame_->loadBindings();
    129126
     
    244241  }
    245242
     243  void InputManager::feedInputBuffer(InputBuffer* buffer)
     244  {
     245    this->handlerBuffer_ = buffer;
     246  }
     247
     248
    246249}
Note: See TracChangeset for help on using the changeset viewer.