InputX11.h 215 B

12345678910111213141516
  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. };
  10. } // end namespace anki
  11. #endif