AppDelegate.cs 213 B

123456789
  1. using Foundation;
  2. namespace VeloeKemonoPartyApp;
  3. [Register("AppDelegate")]
  4. public class AppDelegate : MauiUIApplicationDelegate
  5. {
  6. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  7. }