Changeset 4386 in orxonox.OLD for orxonox/trunk/src/util/event/event_handler.h
- Timestamp:
- May 29, 2005, 11:33:49 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/event/event_handler.h
r4369 r4386 16 16 17 17 18 //! Key aliasing structure 19 /** 20 This structure contains the key aliasing information, e.g. the command strings that 21 have been bound to the keys. 22 */ 23 typedef struct 24 { 25 char keys[N_STD_KEYS][CMD_LENGHT]; 26 char buttons[N_BUTTONS][CMD_LENGHT]; 27 } KeyBindings; 18 28 19 29 20 … … 50 41 private: 51 42 static EventHandler* singletonRef; 52 KeyBindings* keyAliases;53 43 EventListener*** listeners; //!< a list of registered listeners 54 44 elState state;
Note: See TracChangeset
for help on using the changeset viewer.