Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 6, 2009, 12:03:05 PM (16 years ago)
Author:
rgrieder
Message:

Extracted joy stick related code from InputManager to a new JoyStick class in order to make the InputManger less of a monster class and to apply a little bit more OO.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core4/src/core/input/SimpleInputState.h

    r3196 r3270  
    119119    }
    120120
     121    inline void SimpleInputState::keyPressed(const KeyEvent& evt)
     122    {
     123        if (keyHandler_)
     124            keyHandler_->keyPressed(evt);
     125    }
     126
    121127    inline void SimpleInputState::keyReleased(const KeyEvent& evt)
    122128    {
Note: See TracChangeset for help on using the changeset viewer.