Fix line endings

This commit is contained in:
Dan Balasescu 2025-07-03 13:04:26 +09:00
parent 2a51be187b
commit 18df50890a
No known key found for this signature in database
1 changed files with 12 additions and 12 deletions

View File

@ -1,12 +1,12 @@
using Org.Libsdl.App; using Org.Libsdl.App;
namespace SDL.Tests.Android namespace SDL.Tests.Android
{ {
[Activity(Label = "SDL3-CS Android Tests", MainLauncher = true)] [Activity(Label = "SDL3-CS Android Tests", MainLauncher = true)]
public class MainActivity : SDLActivity public class MainActivity : SDLActivity
{ {
protected override string[] GetLibraries() => ["SDL3", "SDL3_image", "SDL3_ttf", "SDL3_mixer"]; protected override string[] GetLibraries() => ["SDL3", "SDL3_image", "SDL3_ttf", "SDL3_mixer"];
protected override void Main() => Program.Main(); protected override void Main() => Program.Main();
} }
} }