| 10 | #include <cstring> |
| 11 | |
| 12 | KeyBoard::KeyBoard() |
| 13 | { |
| 14 | input_state = 0; |
| 15 | std::memset(bKeys, 0, sizeof(bKeys)); |
| 16 | std::memset(bKeys_state, 0, sizeof(bKeys_state)); |
| 17 | } |
| 18 | |
| 19 | KeyBoard::~KeyBoard() {} |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected