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