mirror of
https://github.com/Marat-Tanalin/bsnes-mt.git
synced 2025-04-02 10:21:42 -04:00
12 lines
164 B
C++
12 lines
164 B
C++
#if defined(Hiro_Mouse)
|
|
|
|
namespace hiro {
|
|
|
|
struct pMouse {
|
|
static auto position() -> Position;
|
|
static auto pressed(Mouse::Button button) -> bool;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|