bsnes-hd/hiro/cocoa/keyboard.hpp
2019-05-26 20:37:46 +02: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