mirror of https://github.com/bsnes-emu/bsnes.git
17 lines
267 B
C++
17 lines
267 B
C++
|
#if defined(Hiro_Keyboard)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pKeyboard {
|
||
|
static auto poll() -> vector<bool>;
|
||
|
static auto pressed(unsigned code) -> bool;
|
||
|
|
||
|
static auto _pressed(const char* state, uint16_t code) -> bool;
|
||
|
|
||
|
static auto initialize() -> void;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|