|
#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
|