Fix android tests

This commit is contained in:
Dan Balasescu 2024-08-07 22:16:40 +09:00
parent 26865ce7e6
commit eaacf5279e
No known key found for this signature in database
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,4 @@
using Java.Lang; using Org.Libsdl.App;
using Org.Libsdl.App;
namespace SDL.Tests.Android namespace SDL.Tests.Android
{ {
@ -8,6 +7,6 @@ namespace SDL.Tests.Android
{ {
protected override string[] GetLibraries() => ["SDL3"]; protected override string[] GetLibraries() => ["SDL3"];
protected override IRunnable CreateSDLMainRunnable() => new Runnable(Program.Main); protected override void Main() => Program.Main();
} }
} }