mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
12 lines
159 B
C++
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
|