using Qwirkle.Views; using Microsoft.Maui.Controls; using Qwirkle.Pages; using QwirkleClassLibrary.Games; namespace Qwirkle { public partial class App : Application { public App() { InitializeComponent(); MainPage = new AppShell(); Routing.RegisterRoute(nameof(SetPlayers), typeof(SetPlayers)); } public Game Game { get; set; } = new(); } }