SdlEvent.cs 316 B

1234567891011121314151617
  1. namespace Urho.iOS
  2. {
  3. // a copy of SDL_events.h
  4. public enum SdlEvent
  5. {
  6. SDL_FIRSTEVENT = 0,
  7. /* Application events */
  8. SDL_QUIT = 0x100,
  9. SDL_APP_TERMINATING,
  10. SDL_APP_LOWMEMORY,
  11. SDL_APP_WILLENTERBACKGROUND,
  12. SDL_APP_DIDENTERBACKGROUND,
  13. SDL_APP_WILLENTERFOREGROUND,
  14. SDL_APP_DIDENTERFOREGROUND,
  15. }
  16. }