Changeset 1646 for code/branches/gui/src/core/input/SimpleInputState.h
- Timestamp:
- Jul 24, 2008, 10:40:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/input/SimpleInputState.h
r1642 r1646 45 45 class _CoreExport SimpleInputState : public InputState 46 46 { 47 friend class InputManager; 48 friend class ClassFactory<SimpleInputState>; 49 47 50 public: 48 SimpleInputState();49 ~SimpleInputState() { }50 51 51 void setKeyHandler (KeyHandler* handler) { keyHandler_ = handler; update(); } 52 52 void setMouseHandler (MouseHandler* handler) { mouseHandler_ = handler; update(); } … … 57 57 58 58 private: 59 SimpleInputState(); 60 ~SimpleInputState() { } 61 59 62 void tickInput(float dt); 60 63 void tickInput(float dt, unsigned int device);
Note: See TracChangeset
for help on using the changeset viewer.