90class InputComponent :
public Component
97 void update(uint_fast16_t diffTime)
override;
99 bool isKeyDown(Key key);
102 const bool* m_keyStates;
103 SDL_Scancode mapKeyToSDL(Key key);
104 std::map<Key, SDL_Scancode> m_keyMappings;
105 void InitKeyMappings();