From 7f8ddcd4777bb14d7d785d03dcaf534eb96a141d Mon Sep 17 00:00:00 2001 From: Susko3 Date: Fri, 6 Jun 2025 18:53:31 +0200 Subject: [PATCH] Add SDL_GetEventDescription to tests --- SDL3-CS.Tests/MyWindow.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SDL3-CS.Tests/MyWindow.cs b/SDL3-CS.Tests/MyWindow.cs index 233f5ca..20be27c 100644 --- a/SDL3-CS.Tests/MyWindow.cs +++ b/SDL3-CS.Tests/MyWindow.cs @@ -158,6 +158,10 @@ namespace SDL.Tests SDL_Keymod mod = e.key.mod; Console.WriteLine(mod); break; + + case SDL_Keycode.SDLK_E: + Console.WriteLine(SDL_GetEventDescription(e)); + break; } break;