Files
dotnet-maui-workshop/MonkeyFinder/Platforms/MacCatalyst/AppDelegate.cs
2024-04-22 16:48:36 +02:00

10 lines
206 B
C#

using Foundation;
namespace MonkeyFinder;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}