| 19 | KeyBoard::~KeyBoard() {} |
| 20 | |
| 21 | void KeyBoard::update() |
| 22 | { |
| 23 | input_state ^= 1; |
| 24 | std::memcpy(bKeys_state[input_state], bKeys, sizeof(bKeys)); |
| 25 | } |
| 26 | |
| 27 | bool KeyBoard::keyPressed(SDL_Scancode key) |
| 28 | { |
nothing calls this directly
no outgoing calls
no test coverage detected