diff --git a/Qwirkle/Qwirkle.sln b/Qwirkle/Qwirkle.sln
new file mode 100644
index 0000000..25066b3
--- /dev/null
+++ b/Qwirkle/Qwirkle.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.8.34330.188
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qwirkle", "Qwirkle\Qwirkle.csproj", "{DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.Build.0 = Release|Any CPU
+ {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {0660E7F6-D4AA-4FCC-B0DB-3996CA1580BD}
+ EndGlobalSection
+EndGlobal
diff --git a/Qwirkle/Qwirkle/App.xaml b/Qwirkle/Qwirkle/App.xaml
new file mode 100644
index 0000000..4756383
--- /dev/null
+++ b/Qwirkle/Qwirkle/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Qwirkle/Qwirkle/App.xaml.cs b/Qwirkle/Qwirkle/App.xaml.cs
new file mode 100644
index 0000000..0776ad2
--- /dev/null
+++ b/Qwirkle/Qwirkle/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace Qwirkle
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/Qwirkle/Qwirkle/AppShell.xaml b/Qwirkle/Qwirkle/AppShell.xaml
new file mode 100644
index 0000000..3b3168a
--- /dev/null
+++ b/Qwirkle/Qwirkle/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/Qwirkle/Qwirkle/AppShell.xaml.cs b/Qwirkle/Qwirkle/AppShell.xaml.cs
new file mode 100644
index 0000000..0d3dcd4
--- /dev/null
+++ b/Qwirkle/Qwirkle/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace Qwirkle
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Qwirkle/Qwirkle/MainPage.xaml b/Qwirkle/Qwirkle/MainPage.xaml
new file mode 100644
index 0000000..f7fb2ff
--- /dev/null
+++ b/Qwirkle/Qwirkle/MainPage.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Qwirkle/Qwirkle/MainPage.xaml.cs b/Qwirkle/Qwirkle/MainPage.xaml.cs
new file mode 100644
index 0000000..ed39076
--- /dev/null
+++ b/Qwirkle/Qwirkle/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace Qwirkle
+{
+ public partial class MainPage : ContentPage
+ {
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+ }
+
+}
diff --git a/Qwirkle/Qwirkle/MauiProgram.cs b/Qwirkle/Qwirkle/MauiProgram.cs
new file mode 100644
index 0000000..bea50df
--- /dev/null
+++ b/Qwirkle/Qwirkle/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace Qwirkle
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml b/Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..bdec9b5
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs b/Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..25f1bb3
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Qwirkle
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/Android/MainApplication.cs b/Qwirkle/Qwirkle/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..b200263
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Qwirkle
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/Android/Resources/values/colors.xml b/Qwirkle/Qwirkle/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..5cd1604
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs b/Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..1486a5f
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Qwirkle
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Entitlements.plist b/Qwirkle/Qwirkle/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..8e87c0c
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist b/Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..f24aacc
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Program.cs b/Qwirkle/Qwirkle/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..e775d6d
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Qwirkle
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/Tizen/Main.cs b/Qwirkle/Qwirkle/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..7d1dc38
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace Qwirkle
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/Tizen/tizen-manifest.xml b/Qwirkle/Qwirkle/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..c1567a9
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Platforms/Windows/App.xaml b/Qwirkle/Qwirkle/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..65b3bfd
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs b/Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..394f2b0
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace Qwirkle.WinUI
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : MauiWinUIApplication
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+
+}
diff --git a/Qwirkle/Qwirkle/Platforms/Windows/Package.appxmanifest b/Qwirkle/Qwirkle/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..b3d85d9
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Qwirkle/Qwirkle/Platforms/Windows/app.manifest b/Qwirkle/Qwirkle/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..fb8874f
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs b/Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..1486a5f
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Qwirkle
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Qwirkle/Qwirkle/Platforms/iOS/Info.plist b/Qwirkle/Qwirkle/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..358337b
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Qwirkle/Qwirkle/Platforms/iOS/Program.cs b/Qwirkle/Qwirkle/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..e775d6d
--- /dev/null
+++ b/Qwirkle/Qwirkle/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Qwirkle
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/Qwirkle/Qwirkle/Properties/launchSettings.json b/Qwirkle/Qwirkle/Properties/launchSettings.json
new file mode 100644
index 0000000..c16206a
--- /dev/null
+++ b/Qwirkle/Qwirkle/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Qwirkle.csproj b/Qwirkle/Qwirkle/Qwirkle.csproj
new file mode 100644
index 0000000..b64bb01
--- /dev/null
+++ b/Qwirkle/Qwirkle/Qwirkle.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ Qwirkle
+ true
+ true
+ enable
+ enable
+
+
+ Qwirkle
+
+
+ com.companyname.qwirkle
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg b/Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..5f04fcf
--- /dev/null
+++ b/Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg b/Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Regular.ttf b/Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..9ab655d
Binary files /dev/null and b/Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Semibold.ttf b/Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..2b7468e
Binary files /dev/null and b/Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png b/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png differ
diff --git a/Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt b/Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/Qwirkle/Qwirkle/Resources/Splash/splash.svg b/Qwirkle/Qwirkle/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/Qwirkle/Qwirkle/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Resources/Styles/Colors.xaml b/Qwirkle/Qwirkle/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..22f0a67
--- /dev/null
+++ b/Qwirkle/Qwirkle/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Qwirkle/Qwirkle/Resources/Styles/Styles.xaml b/Qwirkle/Qwirkle/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..5bc20f1
--- /dev/null
+++ b/Qwirkle/Qwirkle/Resources/Styles/Styles.xaml
@@ -0,0 +1,426 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+