| 249 | */ |
| 250 | template<typename U> |
| 251 | void UnbindAction(const std::string& name, IInputListener* thisptr, void(U::* f)(), ActionState type){ |
| 252 | ActionCallback action(thisptr,f,type); |
| 253 | actionMappings[name].remove(action); |
| 254 | thisptr->OnUnregister(this); |
| 255 | } |
| 256 | |
| 257 | |
| 258 | /** |