Changeset 3288 for code/branches/core4/src/core/input/InputState.h
- Timestamp:
- Jul 13, 2009, 10:43:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core4/src/core/input/InputState.h
r3279 r3288 97 97 98 98 private: 99 InputState( );99 InputState(const std::string& name, bool bAlwaysGetsInput, bool bTransparent, InputStatePriority priority); 100 100 ~InputState() { } 101 101 102 void JoyStickQuantityChanged( unsigned int n);102 void JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList); 103 103 104 void setName(const std::string& name) { name_ = name; } 105 void setPriority(int priority) { priority_ = priority; } 104 void setPriority(int priority) { priority_ = priority; } 106 105 107 std::string name_; 106 const std::string name_; 107 const bool bAlwaysGetsInput_; 108 const bool bTransparent_; 108 109 int priority_; 109 bool bAlwaysGetsInput_;110 bool bTransparent_;111 110 bool bExpired_; 112 111 std::vector<InputHandler*> handlers_;
Note: See TracChangeset
for help on using the changeset viewer.