| 390 | } |
| 391 | |
| 392 | bool CInput::KeyIsPressed(int Key) const |
| 393 | { |
| 394 | dbg_assert(Key >= KEY_FIRST && Key < KEY_LAST, "Key invalid: %d", Key); |
| 395 | return m_aCurrentKeyStates[Key]; |
| 396 | } |
| 397 | |
| 398 | bool CInput::KeyPress(int Key) const |
| 399 | { |
no outgoing calls
no test coverage detected