Initial Commit

This commit is contained in:
2026-06-17 12:59:31 -04:00
commit 3ec2f67103
95 changed files with 66244 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Web;
using Web.Services;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
builder.Services.AddScoped<GameService>();
await builder.Build().RunAsync();