O------------------------------------------------------------------------------O | olc::HWButton - Represents the state of a hardware button (mouse/key/joy) | O------------------------------------------------------------------------------O
| 1027 | // | olc::HWButton - Represents the state of a hardware button (mouse/key/joy) | |
| 1028 | // O------------------------------------------------------------------------------O |
| 1029 | struct HWButton |
| 1030 | { |
| 1031 | bool bPressed = false; // Set once during the frame the event occurs |
| 1032 | bool bReleased = false; // Set once during the frame the event occurs |
| 1033 | bool bHeld = false; // Set true for all frames between pressed and released events |
| 1034 | }; |
| 1035 | |
| 1036 | |
| 1037 | // O------------------------------------------------------------------------------O |
nothing calls this directly
no outgoing calls
no test coverage detected