ares-openbsd/hiro/qt/keyboard.hpp

17 行
257 B
C++

#if defined(Hiro_Keyboard)
namespace hiro {
struct pKeyboard {
static auto poll() -> vector<bool>;
static auto pressed(u32 code) -> bool;
static auto _pressed(const char* state, u16 code) -> bool;
static auto initialize() -> void;
};
}
#endif