keyboard.hpp 159 B

12345678910111213
  1. #if defined(Hiro_Keyboard)
  2. namespace hiro {
  3. struct pKeyboard {
  4. static auto poll() -> vector<bool>;
  5. static auto pressed(uint code) -> bool;
  6. };
  7. }
  8. #endif