bsnes-mt/hiro/cocoa/keyboard.hpp
2020-06-02 20:53:45 +03:00

12 lines
159 B
C++

#if defined(Hiro_Keyboard)
namespace hiro {
struct pKeyboard {
static auto poll() -> vector<bool>;
static auto pressed(uint code) -> bool;
};
}
#endif