Main.cs 295 B

12345678910111213141516
  1. using System;
  2. using Microsoft.Maui;
  3. using Microsoft.Maui.Hosting;
  4. namespace VeloeKemonoPartyApp;
  5. class Program : MauiApplication
  6. {
  7. protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
  8. static void Main(string[] args)
  9. {
  10. var app = new Program();
  11. app.Run(args);
  12. }
  13. }