mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
164 B
C++
13 lines
164 B
C++
|
#if defined(Hiro_Mouse)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pMouse {
|
||
|
static auto position() -> Position;
|
||
|
static auto pressed(Mouse::Button button) -> bool;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|