mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
15 lines
183 B
C++
15 lines
183 B
C++
#if defined(Hiro_Mouse)
|
|
|
|
namespace hiro {
|
|
|
|
auto pMouse::position() -> Position {
|
|
return {0, 0};
|
|
}
|
|
|
|
auto pMouse::pressed(Mouse::Button button) -> bool {
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|