Files
osu-framework/osu.Framework.Tests.iOS/Application.cs
2022-12-15 10:40:32 +03:00

19 lines
460 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable disable
using UIKit;
namespace osu.Framework.Tests
{
public static class Application
{
// This is the main entry point of the application.
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
}
}
}