mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
16 lines
204 B
C++
16 lines
204 B
C++
#if defined(Hiro_Keyboard)
|
|
|
|
namespace hiro {
|
|
|
|
auto pKeyboard::poll() -> vector<bool> {
|
|
vector<bool> result;
|
|
return result;
|
|
}
|
|
|
|
auto pKeyboard::pressed(uint code) -> bool {
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|