1#ifndef INPUTMANAGER_H_DEFINED
2#define INPUTMANAGER_H_DEFINED
11 void bind(std::string name,
int key);
14 void unbind(std::string name);
17 int getBind(std::string name);
24 bool isPressed(
int key);
28 bool isPressed(std::string key);
36 void update(
int delay_ms=0);
39 std::string keyToString(
int key);
42 int stringToKey(std::string
string);
51 extern int pressedKey;
54 extern std::map<std::string, int> binds;