Quirks.h 220 B

12345678910111213141516
  1. #ifndef INCLUDE_QUIRKS_H
  2. #define INCLUDE_QUIRKS_H
  3. #include "platform.h"
  4. namespace WalrusRPG
  5. {
  6. namespace Quirks
  7. {
  8. void init();
  9. void deinit();
  10. bool get_key(keycode_t key);
  11. }
  12. }
  13. #endif