| 4 | namespace Abyss::Common { |
| 5 | |
| 6 | MouseState::MouseState() : _x(0), _y(0), _visible(true) {} |
| 7 | |
| 8 | [[nodiscard]] bool MouseState::isButtonPressed(Enums::MouseButton button) const { return (static_cast<uint8_t>(_button) & static_cast<uint8_t>(button)) != 0; } |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected