InputX11.h 249 B

1234567891011121314151617
  1. #ifndef ANKI_INPUT_INPUT_X11_H
  2. #define ANKI_INPUT_INPUT_X11_H
  3. #include <X11/XKBlib.h>
  4. namespace anki {
  5. /// X11 input implementation
  6. struct InputImpl
  7. {
  8. Cursor emptyCursor = 0;
  9. Array<U16, 256> nativeKeyToAnki;
  10. };
  11. } // end namespace anki
  12. #endif