mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-22 23:25:40 +00:00
Missing event enums
This commit is contained in:
parent
f5e19f2114
commit
0560581774
|
@ -3486,6 +3486,14 @@ namespace SDL2
|
|||
/* Application events */
|
||||
SDL_QUIT = 0x100,
|
||||
|
||||
/* iOS/Android/WinRT app events */
|
||||
SDL_APP_TERMINATING,
|
||||
SDL_APP_LOWMEMORY,
|
||||
SDL_APP_WILLENTERBACKGROUND,
|
||||
SDL_APP_DIDENTERBACKGROUND,
|
||||
SDL_APP_WILLENTERFOREGROUND,
|
||||
SDL_APP_DIDENTERFOREGROUND,
|
||||
|
||||
/* Window events */
|
||||
SDL_WINDOWEVENT = 0x200,
|
||||
SDL_SYSWMEVENT,
|
||||
|
@ -3495,6 +3503,7 @@ namespace SDL2
|
|||
SDL_KEYUP,
|
||||
SDL_TEXTEDITING,
|
||||
SDL_TEXTINPUT,
|
||||
SDL_KEYMAPCHANGED,
|
||||
|
||||
/* Mouse events */
|
||||
SDL_MOUSEMOTION = 0x400,
|
||||
|
|
Loading…
Reference in a new issue