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 @@ + + + + + + + +