gamenight/FrontendPlatformUno/FrontendPlatformUno.Wasm/Program.cs

14 lines
275 B
C#

namespace FrontendPlatformUno.Wasm
{
public class Program
{
private static App? _app;
public static int Main(string[] args)
{
Microsoft.UI.Xaml.Application.Start(_ => _app = new AppHead());
return 0;
}
}
}