Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 20, 2009, 6:46:50 PM (15 years ago)
Author:
rgrieder
Message:

Basic construct of an IOConsole for Unix, using Oli's console from GSDedicated.
MAY NOT COMPILE, PROBABLY DOESN'T RUN!
And surely does neither on Windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/libraries/core/input/InputHandler.h

    r5781 r5968  
    7272            , text_(evt.text)
    7373            , modifiers_(0)
     74        { }
     75        KeyEvent(KeyCode::ByEnum key, unsigned int text, int modifiers)
     76            : key_(key)
     77            , text_(text)
     78            , modifiers_(modifiers)
    7479        { }
    7580        bool operator==(const KeyEvent& rhs) const
Note: See TracChangeset for help on using the changeset viewer.