| 20 | BYTE KeyboardState::currState[256]; |
| 21 | |
| 22 | MouseState::MouseState() : X (0), |
| 23 | Y (0), |
| 24 | DX (0), |
| 25 | DY (0), |
| 26 | IsOverWindow (false) |
| 27 | { |
| 28 | |
| 29 | } |
| 30 | |
| 31 | MouseState MouseState::GetMouseState(HWND hwnd) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected