bsnes/hiro/cocoa/mouse.hpp

13 lines
164 B
C++
Executable File

#if defined(Hiro_Mouse)
namespace hiro {
struct pMouse {
static auto position() -> Position;
static auto pressed(Mouse::Button button) -> bool;
};
}
#endif