mouse.cpp 183 B

12345678910111213141516
  1. #if defined(Hiro_Mouse)
  2. namespace hiro {
  3. auto pMouse::position() -> Position {
  4. return {0, 0};
  5. }
  6. auto pMouse::pressed(Mouse::Button button) -> bool {
  7. return false;
  8. }
  9. }
  10. #endif