From f248a2719e05a4a381a833625c9e469253a4dec2 Mon Sep 17 00:00:00 2001 From: "jeremy.mouyon" Date: Sat, 4 May 2024 09:17:22 +0200 Subject: [PATCH] change name --- Qwirkle/{Qwirkle => QwirkleViews}/App.xaml | 28 +- Qwirkle/{Qwirkle => QwirkleViews}/App.xaml.cs | 24 +- .../{Qwirkle => QwirkleViews}/AppShell.xaml | 86 +- .../AppShell.xaml.cs | 20 +- .../{Qwirkle => QwirkleViews}/MainPage.xaml | 84 +- .../MainPage.xaml.cs | 50 +- .../{Qwirkle => QwirkleViews}/MauiProgram.cs | 54 +- .../Pages/Credits.xaml | 0 .../Pages/Credits.xaml.cs | 0 .../Pages/GameBoard.xaml.cs | 0 .../Pages/Gameboard.xaml | 76 +- .../Pages/Leaderboard.xaml | 152 +-- .../Pages/Leaderboard.xaml.cs | 16 +- .../Pages/Scoreboard.xaml | 98 +- .../Pages/Scoreboard.xaml.cs | 16 +- .../Pages/SetPlayers.xaml | 0 .../Pages/SetPlayers.xaml.cs | 0 .../Pages/Settings.xaml | 74 +- .../Pages/Settings.xaml.cs | 16 +- .../Platforms/Android/AndroidManifest.xml | 10 +- .../Platforms/Android/MainActivity.cs | 22 +- .../Platforms/Android/MainApplication.cs | 32 +- .../Android/Resources/values/colors.xml | 10 +- .../Platforms/MacCatalyst/AppDelegate.cs | 20 +- .../Platforms/MacCatalyst/Entitlements.plist | 28 +- .../Platforms/MacCatalyst/Info.plist | 76 +- .../Platforms/MacCatalyst/Program.cs | 32 +- .../Platforms/Tizen/Main.cs | 34 +- .../Platforms/Tizen/tizen-manifest.xml | 28 +- .../Platforms/Windows/App.xaml | 16 +- .../Platforms/Windows/App.xaml.cs | 50 +- .../Platforms/Windows/Package.appxmanifest | 92 +- .../Platforms/Windows/app.manifest | 30 +- .../Platforms/iOS/AppDelegate.cs | 20 +- .../Platforms/iOS/Info.plist | 64 +- .../Platforms/iOS/Program.cs | 32 +- .../Properties/launchSettings.json | 14 +- .../QwirkleViews.csproj | 0 .../Resources/AppIcon/appicon.svg | 6 +- .../Resources/AppIcon/appiconfg.svg | 14 +- .../Resources/Fonts/DiloWorld.ttf | Bin .../Resources/Fonts/Lexend-Medium.ttf | Bin .../Resources/Images/club.png | Bin .../Resources/Images/qwirklelogo.png | Bin .../Resources/Images/shuriken.png | Bin .../Resources/Images/star.png | Bin .../Resources/Images/uca.png | Bin .../Resources/Raw/AboutAssets.txt | 30 +- .../Resources/Splash/splash.svg | 14 +- .../Resources/Styles/Colors.xaml | 90 +- .../Resources/Styles/Styles.xaml | 1072 ++++++++--------- .../Views/ButtonShadow.xaml | 0 .../Views/ButtonShadow.xaml.cs | 0 .../Views/EntryPlayer.xaml | 0 .../Views/EntryPlayer.xaml.cs | 0 .../Views/GoBack.xaml | 0 .../Views/GoBack.xaml.cs | 0 .../Views/LeaderboardLine.xaml | 0 .../Views/LeaderboardLine.xaml.cs | 0 .../Views/ScoreboardLine.xaml | 0 .../Views/ScoreboardLine.xaml.cs | 0 .../Views/TileCircle.xaml | 0 .../Views/TileCircle.xaml.cs | 0 .../Views/TileClub.xaml | 0 .../Views/TileClub.xaml.cs | 0 .../Views/TileRhombus.xaml | 0 .../Views/TileRhombus.xaml.cs | 0 .../Views/TileShuriken.xaml | 0 .../Views/TileShuriken.xaml.cs | 0 .../Views/TileSquare.xaml | 0 .../Views/TileSquare.xaml.cs | 0 .../Views/TileStar.xaml | 0 .../Views/TileStar.xaml.cs | 0 73 files changed, 1315 insertions(+), 1315 deletions(-) rename Qwirkle/{Qwirkle => QwirkleViews}/App.xaml (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/App.xaml.cs (94%) rename Qwirkle/{Qwirkle => QwirkleViews}/AppShell.xaml (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/AppShell.xaml.cs (94%) rename Qwirkle/{Qwirkle => QwirkleViews}/MainPage.xaml (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/MainPage.xaml.cs (95%) rename Qwirkle/{Qwirkle => QwirkleViews}/MauiProgram.cs (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Credits.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Credits.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/GameBoard.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Gameboard.xaml (95%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Leaderboard.xaml (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Leaderboard.xaml.cs (93%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Scoreboard.xaml (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Scoreboard.xaml.cs (93%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/SetPlayers.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/SetPlayers.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Settings.xaml (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Pages/Settings.xaml.cs (93%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Android/AndroidManifest.xml (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Android/MainActivity.cs (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Android/MainApplication.cs (95%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Android/Resources/values/colors.xml (91%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/MacCatalyst/AppDelegate.cs (95%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/MacCatalyst/Entitlements.plist (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/MacCatalyst/Info.plist (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/MacCatalyst/Program.cs (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Tizen/Main.cs (95%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Tizen/tizen-manifest.xml (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Windows/App.xaml (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Windows/App.xaml.cs (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Windows/Package.appxmanifest (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/Windows/app.manifest (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/iOS/AppDelegate.cs (95%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/iOS/Info.plist (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Platforms/iOS/Program.cs (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Properties/launchSettings.json (93%) rename Qwirkle/{Qwirkle => QwirkleViews}/QwirkleViews.csproj (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/AppIcon/appicon.svg (96%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/AppIcon/appiconfg.svg (99%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Fonts/DiloWorld.ttf (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Fonts/Lexend-Medium.ttf (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Images/club.png (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Images/qwirklelogo.png (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Images/shuriken.png (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Images/star.png (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Images/uca.png (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Raw/AboutAssets.txt (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Splash/splash.svg (99%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Styles/Colors.xaml (97%) rename Qwirkle/{Qwirkle => QwirkleViews}/Resources/Styles/Styles.xaml (98%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/ButtonShadow.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/ButtonShadow.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/EntryPlayer.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/EntryPlayer.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/GoBack.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/GoBack.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/LeaderboardLine.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/LeaderboardLine.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/ScoreboardLine.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/ScoreboardLine.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileCircle.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileCircle.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileClub.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileClub.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileRhombus.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileRhombus.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileShuriken.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileShuriken.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileSquare.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileSquare.xaml.cs (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileStar.xaml (100%) rename Qwirkle/{Qwirkle => QwirkleViews}/Views/TileStar.xaml.cs (100%) diff --git a/Qwirkle/Qwirkle/App.xaml b/Qwirkle/QwirkleViews/App.xaml similarity index 97% rename from Qwirkle/Qwirkle/App.xaml rename to Qwirkle/QwirkleViews/App.xaml index 4756383..1bea467 100644 --- a/Qwirkle/Qwirkle/App.xaml +++ b/Qwirkle/QwirkleViews/App.xaml @@ -1,14 +1,14 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/Qwirkle/Qwirkle/App.xaml.cs b/Qwirkle/QwirkleViews/App.xaml.cs similarity index 94% rename from Qwirkle/Qwirkle/App.xaml.cs rename to Qwirkle/QwirkleViews/App.xaml.cs index 0776ad2..c9acbda 100644 --- a/Qwirkle/Qwirkle/App.xaml.cs +++ b/Qwirkle/QwirkleViews/App.xaml.cs @@ -1,12 +1,12 @@ -namespace Qwirkle -{ - public partial class App : Application - { - public App() - { - InitializeComponent(); - - MainPage = new AppShell(); - } - } -} +namespace Qwirkle +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/Qwirkle/Qwirkle/AppShell.xaml b/Qwirkle/QwirkleViews/AppShell.xaml similarity index 96% rename from Qwirkle/Qwirkle/AppShell.xaml rename to Qwirkle/QwirkleViews/AppShell.xaml index 5a9db4a..714eaaf 100644 --- a/Qwirkle/Qwirkle/AppShell.xaml +++ b/Qwirkle/QwirkleViews/AppShell.xaml @@ -1,43 +1,43 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/Qwirkle/Qwirkle/AppShell.xaml.cs b/Qwirkle/QwirkleViews/AppShell.xaml.cs similarity index 94% rename from Qwirkle/Qwirkle/AppShell.xaml.cs rename to Qwirkle/QwirkleViews/AppShell.xaml.cs index 0d3dcd4..52ad687 100644 --- a/Qwirkle/Qwirkle/AppShell.xaml.cs +++ b/Qwirkle/QwirkleViews/AppShell.xaml.cs @@ -1,10 +1,10 @@ -namespace Qwirkle -{ - public partial class AppShell : Shell - { - public AppShell() - { - InitializeComponent(); - } - } -} +namespace Qwirkle +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/Qwirkle/Qwirkle/MainPage.xaml b/Qwirkle/QwirkleViews/MainPage.xaml similarity index 96% rename from Qwirkle/Qwirkle/MainPage.xaml rename to Qwirkle/QwirkleViews/MainPage.xaml index dada2f4..75e9e6c 100644 --- a/Qwirkle/Qwirkle/MainPage.xaml +++ b/Qwirkle/QwirkleViews/MainPage.xaml @@ -1,42 +1,42 @@ - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/Qwirkle/Qwirkle/MainPage.xaml.cs b/Qwirkle/QwirkleViews/MainPage.xaml.cs similarity index 95% rename from Qwirkle/Qwirkle/MainPage.xaml.cs rename to Qwirkle/QwirkleViews/MainPage.xaml.cs index 5184f47..81e1b9a 100644 --- a/Qwirkle/Qwirkle/MainPage.xaml.cs +++ b/Qwirkle/QwirkleViews/MainPage.xaml.cs @@ -1,25 +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); - }*/ - } - -} +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/QwirkleViews/MauiProgram.cs similarity index 96% rename from Qwirkle/Qwirkle/MauiProgram.cs rename to Qwirkle/QwirkleViews/MauiProgram.cs index 992f00b..1c04a59 100644 --- a/Qwirkle/Qwirkle/MauiProgram.cs +++ b/Qwirkle/QwirkleViews/MauiProgram.cs @@ -1,27 +1,27 @@ -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"); - fonts.AddFont("DiloWorld.ttf", "DiloWorld"); - fonts.AddFont("Lexend-Medium.ttf", "Lexend-Meduim"); - }); - -#if DEBUG - builder.Logging.AddDebug(); -#endif - - return builder.Build(); - } - } -} +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"); + fonts.AddFont("DiloWorld.ttf", "DiloWorld"); + fonts.AddFont("Lexend-Medium.ttf", "Lexend-Meduim"); + }); + +#if DEBUG + builder.Logging.AddDebug(); +#endif + + return builder.Build(); + } + } +} diff --git a/Qwirkle/Qwirkle/Pages/Credits.xaml b/Qwirkle/QwirkleViews/Pages/Credits.xaml similarity index 100% rename from Qwirkle/Qwirkle/Pages/Credits.xaml rename to Qwirkle/QwirkleViews/Pages/Credits.xaml diff --git a/Qwirkle/Qwirkle/Pages/Credits.xaml.cs b/Qwirkle/QwirkleViews/Pages/Credits.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Pages/Credits.xaml.cs rename to Qwirkle/QwirkleViews/Pages/Credits.xaml.cs diff --git a/Qwirkle/Qwirkle/Pages/GameBoard.xaml.cs b/Qwirkle/QwirkleViews/Pages/GameBoard.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Pages/GameBoard.xaml.cs rename to Qwirkle/QwirkleViews/Pages/GameBoard.xaml.cs diff --git a/Qwirkle/Qwirkle/Pages/Gameboard.xaml b/Qwirkle/QwirkleViews/Pages/Gameboard.xaml similarity index 95% rename from Qwirkle/Qwirkle/Pages/Gameboard.xaml rename to Qwirkle/QwirkleViews/Pages/Gameboard.xaml index fefa29c..bc080ff 100644 --- a/Qwirkle/Qwirkle/Pages/Gameboard.xaml +++ b/Qwirkle/QwirkleViews/Pages/Gameboard.xaml @@ -1,39 +1,39 @@ - - - - - + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml b/Qwirkle/QwirkleViews/Pages/Leaderboard.xaml similarity index 97% rename from Qwirkle/Qwirkle/Pages/Leaderboard.xaml rename to Qwirkle/QwirkleViews/Pages/Leaderboard.xaml index fe2fdc0..eb157c3 100644 --- a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml +++ b/Qwirkle/QwirkleViews/Pages/Leaderboard.xaml @@ -1,77 +1,77 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml.cs b/Qwirkle/QwirkleViews/Pages/Leaderboard.xaml.cs similarity index 93% rename from Qwirkle/Qwirkle/Pages/Leaderboard.xaml.cs rename to Qwirkle/QwirkleViews/Pages/Leaderboard.xaml.cs index 3abf67e..131d287 100644 --- a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml.cs +++ b/Qwirkle/QwirkleViews/Pages/Leaderboard.xaml.cs @@ -1,9 +1,9 @@ -namespace Qwirkle.Pages; - -public partial class Leaderboard : ContentPage -{ - public Leaderboard() - { - InitializeComponent(); - } +namespace Qwirkle.Pages; + +public partial class Leaderboard : ContentPage +{ + public Leaderboard() + { + InitializeComponent(); + } } \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Pages/Scoreboard.xaml b/Qwirkle/QwirkleViews/Pages/Scoreboard.xaml similarity index 96% rename from Qwirkle/Qwirkle/Pages/Scoreboard.xaml rename to Qwirkle/QwirkleViews/Pages/Scoreboard.xaml index fcc4cd0..6651f91 100644 --- a/Qwirkle/Qwirkle/Pages/Scoreboard.xaml +++ b/Qwirkle/QwirkleViews/Pages/Scoreboard.xaml @@ -1,50 +1,50 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Pages/Scoreboard.xaml.cs b/Qwirkle/QwirkleViews/Pages/Scoreboard.xaml.cs similarity index 93% rename from Qwirkle/Qwirkle/Pages/Scoreboard.xaml.cs rename to Qwirkle/QwirkleViews/Pages/Scoreboard.xaml.cs index e878338..7846686 100644 --- a/Qwirkle/Qwirkle/Pages/Scoreboard.xaml.cs +++ b/Qwirkle/QwirkleViews/Pages/Scoreboard.xaml.cs @@ -1,9 +1,9 @@ -namespace Qwirkle.Pages; - -public partial class Scoreboard : ContentPage -{ - public Scoreboard() - { - InitializeComponent(); - } +namespace Qwirkle.Pages; + +public partial class Scoreboard : ContentPage +{ + public Scoreboard() + { + InitializeComponent(); + } } \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Pages/SetPlayers.xaml b/Qwirkle/QwirkleViews/Pages/SetPlayers.xaml similarity index 100% rename from Qwirkle/Qwirkle/Pages/SetPlayers.xaml rename to Qwirkle/QwirkleViews/Pages/SetPlayers.xaml diff --git a/Qwirkle/Qwirkle/Pages/SetPlayers.xaml.cs b/Qwirkle/QwirkleViews/Pages/SetPlayers.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Pages/SetPlayers.xaml.cs rename to Qwirkle/QwirkleViews/Pages/SetPlayers.xaml.cs diff --git a/Qwirkle/Qwirkle/Pages/Settings.xaml b/Qwirkle/QwirkleViews/Pages/Settings.xaml similarity index 96% rename from Qwirkle/Qwirkle/Pages/Settings.xaml rename to Qwirkle/QwirkleViews/Pages/Settings.xaml index b3ee67d..d8c345c 100644 --- a/Qwirkle/Qwirkle/Pages/Settings.xaml +++ b/Qwirkle/QwirkleViews/Pages/Settings.xaml @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Pages/Settings.xaml.cs b/Qwirkle/QwirkleViews/Pages/Settings.xaml.cs similarity index 93% rename from Qwirkle/Qwirkle/Pages/Settings.xaml.cs rename to Qwirkle/QwirkleViews/Pages/Settings.xaml.cs index 8919b5c..aa7a7fd 100644 --- a/Qwirkle/Qwirkle/Pages/Settings.xaml.cs +++ b/Qwirkle/QwirkleViews/Pages/Settings.xaml.cs @@ -1,9 +1,9 @@ -namespace Qwirkle.Pages; - -public partial class Settings : ContentPage -{ - public Settings() - { - InitializeComponent(); - } +namespace Qwirkle.Pages; + +public partial class Settings : ContentPage +{ + public Settings() + { + InitializeComponent(); + } } \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml b/Qwirkle/QwirkleViews/Platforms/Android/AndroidManifest.xml similarity index 96% rename from Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml rename to Qwirkle/QwirkleViews/Platforms/Android/AndroidManifest.xml index bdec9b5..e9937ad 100644 --- a/Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml +++ b/Qwirkle/QwirkleViews/Platforms/Android/AndroidManifest.xml @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs b/Qwirkle/QwirkleViews/Platforms/Android/MainActivity.cs similarity index 97% rename from Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs rename to Qwirkle/QwirkleViews/Platforms/Android/MainActivity.cs index 25f1bb3..2d455ca 100644 --- a/Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs +++ b/Qwirkle/QwirkleViews/Platforms/Android/MainActivity.cs @@ -1,11 +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 - { - } -} +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/QwirkleViews/Platforms/Android/MainApplication.cs similarity index 95% rename from Qwirkle/Qwirkle/Platforms/Android/MainApplication.cs rename to Qwirkle/QwirkleViews/Platforms/Android/MainApplication.cs index b200263..9632487 100644 --- a/Qwirkle/Qwirkle/Platforms/Android/MainApplication.cs +++ b/Qwirkle/QwirkleViews/Platforms/Android/MainApplication.cs @@ -1,16 +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(); - } -} +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/QwirkleViews/Platforms/Android/Resources/values/colors.xml similarity index 91% rename from Qwirkle/Qwirkle/Platforms/Android/Resources/values/colors.xml rename to Qwirkle/QwirkleViews/Platforms/Android/Resources/values/colors.xml index 5cd1604..c04d749 100644 --- a/Qwirkle/Qwirkle/Platforms/Android/Resources/values/colors.xml +++ b/Qwirkle/QwirkleViews/Platforms/Android/Resources/values/colors.xml @@ -1,6 +1,6 @@ - - - #512BD4 - #2B0B98 - #2B0B98 + + + #512BD4 + #2B0B98 + #2B0B98 \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs b/Qwirkle/QwirkleViews/Platforms/MacCatalyst/AppDelegate.cs similarity index 95% rename from Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs rename to Qwirkle/QwirkleViews/Platforms/MacCatalyst/AppDelegate.cs index 1486a5f..910f89c 100644 --- a/Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs +++ b/Qwirkle/QwirkleViews/Platforms/MacCatalyst/AppDelegate.cs @@ -1,10 +1,10 @@ -using Foundation; - -namespace Qwirkle -{ - [Register("AppDelegate")] - public class AppDelegate : MauiUIApplicationDelegate - { - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); - } -} +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/QwirkleViews/Platforms/MacCatalyst/Entitlements.plist similarity index 97% rename from Qwirkle/Qwirkle/Platforms/MacCatalyst/Entitlements.plist rename to Qwirkle/QwirkleViews/Platforms/MacCatalyst/Entitlements.plist index 8e87c0c..de4adc9 100644 --- a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Entitlements.plist +++ b/Qwirkle/QwirkleViews/Platforms/MacCatalyst/Entitlements.plist @@ -1,14 +1,14 @@ - - - - - - - com.apple.security.app-sandbox - - - com.apple.security.network.client - - - - + + + + + + + com.apple.security.app-sandbox + + + com.apple.security.network.client + + + + diff --git a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist b/Qwirkle/QwirkleViews/Platforms/MacCatalyst/Info.plist similarity index 97% rename from Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist rename to Qwirkle/QwirkleViews/Platforms/MacCatalyst/Info.plist index f24aacc..7268977 100644 --- a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist +++ b/Qwirkle/QwirkleViews/Platforms/MacCatalyst/Info.plist @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - UIDeviceFamily - - 2 - - UIRequiredDeviceCapabilities - - arm64 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/appicon.appiconset - - + + + + + + + + + + + + + + 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/QwirkleViews/Platforms/MacCatalyst/Program.cs similarity index 96% rename from Qwirkle/Qwirkle/Platforms/MacCatalyst/Program.cs rename to Qwirkle/QwirkleViews/Platforms/MacCatalyst/Program.cs index e775d6d..449db11 100644 --- a/Qwirkle/Qwirkle/Platforms/MacCatalyst/Program.cs +++ b/Qwirkle/QwirkleViews/Platforms/MacCatalyst/Program.cs @@ -1,16 +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)); - } - } -} +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/QwirkleViews/Platforms/Tizen/Main.cs similarity index 95% rename from Qwirkle/Qwirkle/Platforms/Tizen/Main.cs rename to Qwirkle/QwirkleViews/Platforms/Tizen/Main.cs index 7d1dc38..aa1ede6 100644 --- a/Qwirkle/Qwirkle/Platforms/Tizen/Main.cs +++ b/Qwirkle/QwirkleViews/Platforms/Tizen/Main.cs @@ -1,17 +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); - } - } -} +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/QwirkleViews/Platforms/Tizen/tizen-manifest.xml similarity index 96% rename from Qwirkle/Qwirkle/Platforms/Tizen/tizen-manifest.xml rename to Qwirkle/QwirkleViews/Platforms/Tizen/tizen-manifest.xml index c1567a9..49eb5e3 100644 --- a/Qwirkle/Qwirkle/Platforms/Tizen/tizen-manifest.xml +++ b/Qwirkle/QwirkleViews/Platforms/Tizen/tizen-manifest.xml @@ -1,15 +1,15 @@ - - - - - - maui-appicon-placeholder - - - - - http://tizen.org/privilege/internet - - - + + + + + + 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/QwirkleViews/Platforms/Windows/App.xaml similarity index 97% rename from Qwirkle/Qwirkle/Platforms/Windows/App.xaml rename to Qwirkle/QwirkleViews/Platforms/Windows/App.xaml index 65b3bfd..7c14b74 100644 --- a/Qwirkle/Qwirkle/Platforms/Windows/App.xaml +++ b/Qwirkle/QwirkleViews/Platforms/Windows/App.xaml @@ -1,8 +1,8 @@ - - - + + + diff --git a/Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs b/Qwirkle/QwirkleViews/Platforms/Windows/App.xaml.cs similarity index 96% rename from Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs rename to Qwirkle/QwirkleViews/Platforms/Windows/App.xaml.cs index 394f2b0..c7a793b 100644 --- a/Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs +++ b/Qwirkle/QwirkleViews/Platforms/Windows/App.xaml.cs @@ -1,25 +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(); - } - -} +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/QwirkleViews/Platforms/Windows/Package.appxmanifest similarity index 97% rename from Qwirkle/Qwirkle/Platforms/Windows/Package.appxmanifest rename to Qwirkle/QwirkleViews/Platforms/Windows/Package.appxmanifest index b3d85d9..cf799ff 100644 --- a/Qwirkle/Qwirkle/Platforms/Windows/Package.appxmanifest +++ b/Qwirkle/QwirkleViews/Platforms/Windows/Package.appxmanifest @@ -1,46 +1,46 @@ - - - - - - - - - $placeholder$ - User Name - $placeholder$.png - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + $placeholder$ + User Name + $placeholder$.png + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Qwirkle/Qwirkle/Platforms/Windows/app.manifest b/Qwirkle/QwirkleViews/Platforms/Windows/app.manifest similarity index 97% rename from Qwirkle/Qwirkle/Platforms/Windows/app.manifest rename to Qwirkle/QwirkleViews/Platforms/Windows/app.manifest index fb8874f..d1de68d 100644 --- a/Qwirkle/Qwirkle/Platforms/Windows/app.manifest +++ b/Qwirkle/QwirkleViews/Platforms/Windows/app.manifest @@ -1,15 +1,15 @@ - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - + + + + + + + + true/PM + PerMonitorV2, PerMonitor + + + diff --git a/Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs b/Qwirkle/QwirkleViews/Platforms/iOS/AppDelegate.cs similarity index 95% rename from Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs rename to Qwirkle/QwirkleViews/Platforms/iOS/AppDelegate.cs index 1486a5f..910f89c 100644 --- a/Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs +++ b/Qwirkle/QwirkleViews/Platforms/iOS/AppDelegate.cs @@ -1,10 +1,10 @@ -using Foundation; - -namespace Qwirkle -{ - [Register("AppDelegate")] - public class AppDelegate : MauiUIApplicationDelegate - { - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); - } -} +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/QwirkleViews/Platforms/iOS/Info.plist similarity index 96% rename from Qwirkle/Qwirkle/Platforms/iOS/Info.plist rename to Qwirkle/QwirkleViews/Platforms/iOS/Info.plist index 358337b..0004a4f 100644 --- a/Qwirkle/Qwirkle/Platforms/iOS/Info.plist +++ b/Qwirkle/QwirkleViews/Platforms/iOS/Info.plist @@ -1,32 +1,32 @@ - - - - - LSRequiresIPhoneOS - - UIDeviceFamily - - 1 - 2 - - UIRequiredDeviceCapabilities - - arm64 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/appicon.appiconset - - + + + + + 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/QwirkleViews/Platforms/iOS/Program.cs similarity index 96% rename from Qwirkle/Qwirkle/Platforms/iOS/Program.cs rename to Qwirkle/QwirkleViews/Platforms/iOS/Program.cs index e775d6d..449db11 100644 --- a/Qwirkle/Qwirkle/Platforms/iOS/Program.cs +++ b/Qwirkle/QwirkleViews/Platforms/iOS/Program.cs @@ -1,16 +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)); - } - } -} +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/QwirkleViews/Properties/launchSettings.json similarity index 93% rename from Qwirkle/Qwirkle/Properties/launchSettings.json rename to Qwirkle/QwirkleViews/Properties/launchSettings.json index c16206a..edf8aad 100644 --- a/Qwirkle/Qwirkle/Properties/launchSettings.json +++ b/Qwirkle/QwirkleViews/Properties/launchSettings.json @@ -1,8 +1,8 @@ -{ - "profiles": { - "Windows Machine": { - "commandName": "MsixPackage", - "nativeDebugging": false - } - } +{ + "profiles": { + "Windows Machine": { + "commandName": "MsixPackage", + "nativeDebugging": false + } + } } \ No newline at end of file diff --git a/Qwirkle/Qwirkle/QwirkleViews.csproj b/Qwirkle/QwirkleViews/QwirkleViews.csproj similarity index 100% rename from Qwirkle/Qwirkle/QwirkleViews.csproj rename to Qwirkle/QwirkleViews/QwirkleViews.csproj diff --git a/Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg b/Qwirkle/QwirkleViews/Resources/AppIcon/appicon.svg similarity index 96% rename from Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg rename to Qwirkle/QwirkleViews/Resources/AppIcon/appicon.svg index 5f04fcf..9d63b65 100644 --- a/Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg +++ b/Qwirkle/QwirkleViews/Resources/AppIcon/appicon.svg @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg b/Qwirkle/QwirkleViews/Resources/AppIcon/appiconfg.svg similarity index 99% rename from Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg rename to Qwirkle/QwirkleViews/Resources/AppIcon/appiconfg.svg index 62d66d7..21dfb25 100644 --- a/Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg +++ b/Qwirkle/QwirkleViews/Resources/AppIcon/appiconfg.svg @@ -1,8 +1,8 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Resources/Fonts/DiloWorld.ttf b/Qwirkle/QwirkleViews/Resources/Fonts/DiloWorld.ttf similarity index 100% rename from Qwirkle/Qwirkle/Resources/Fonts/DiloWorld.ttf rename to Qwirkle/QwirkleViews/Resources/Fonts/DiloWorld.ttf diff --git a/Qwirkle/Qwirkle/Resources/Fonts/Lexend-Medium.ttf b/Qwirkle/QwirkleViews/Resources/Fonts/Lexend-Medium.ttf similarity index 100% rename from Qwirkle/Qwirkle/Resources/Fonts/Lexend-Medium.ttf rename to Qwirkle/QwirkleViews/Resources/Fonts/Lexend-Medium.ttf diff --git a/Qwirkle/Qwirkle/Resources/Images/club.png b/Qwirkle/QwirkleViews/Resources/Images/club.png similarity index 100% rename from Qwirkle/Qwirkle/Resources/Images/club.png rename to Qwirkle/QwirkleViews/Resources/Images/club.png diff --git a/Qwirkle/Qwirkle/Resources/Images/qwirklelogo.png b/Qwirkle/QwirkleViews/Resources/Images/qwirklelogo.png similarity index 100% rename from Qwirkle/Qwirkle/Resources/Images/qwirklelogo.png rename to Qwirkle/QwirkleViews/Resources/Images/qwirklelogo.png diff --git a/Qwirkle/Qwirkle/Resources/Images/shuriken.png b/Qwirkle/QwirkleViews/Resources/Images/shuriken.png similarity index 100% rename from Qwirkle/Qwirkle/Resources/Images/shuriken.png rename to Qwirkle/QwirkleViews/Resources/Images/shuriken.png diff --git a/Qwirkle/Qwirkle/Resources/Images/star.png b/Qwirkle/QwirkleViews/Resources/Images/star.png similarity index 100% rename from Qwirkle/Qwirkle/Resources/Images/star.png rename to Qwirkle/QwirkleViews/Resources/Images/star.png diff --git a/Qwirkle/Qwirkle/Resources/Images/uca.png b/Qwirkle/QwirkleViews/Resources/Images/uca.png similarity index 100% rename from Qwirkle/Qwirkle/Resources/Images/uca.png rename to Qwirkle/QwirkleViews/Resources/Images/uca.png diff --git a/Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt b/Qwirkle/QwirkleViews/Resources/Raw/AboutAssets.txt similarity index 97% rename from Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt rename to Qwirkle/QwirkleViews/Resources/Raw/AboutAssets.txt index 50b8a7b..15d6244 100644 --- a/Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt +++ b/Qwirkle/QwirkleViews/Resources/Raw/AboutAssets.txt @@ -1,15 +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(); - } +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/QwirkleViews/Resources/Splash/splash.svg similarity index 99% rename from Qwirkle/Qwirkle/Resources/Splash/splash.svg rename to Qwirkle/QwirkleViews/Resources/Splash/splash.svg index 62d66d7..21dfb25 100644 --- a/Qwirkle/Qwirkle/Resources/Splash/splash.svg +++ b/Qwirkle/QwirkleViews/Resources/Splash/splash.svg @@ -1,8 +1,8 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Resources/Styles/Colors.xaml b/Qwirkle/QwirkleViews/Resources/Styles/Colors.xaml similarity index 97% rename from Qwirkle/Qwirkle/Resources/Styles/Colors.xaml rename to Qwirkle/QwirkleViews/Resources/Styles/Colors.xaml index ae0599b..1f21761 100644 --- a/Qwirkle/Qwirkle/Resources/Styles/Colors.xaml +++ b/Qwirkle/QwirkleViews/Resources/Styles/Colors.xaml @@ -1,46 +1,46 @@ - - - - - - - #512BD4 - #ac99ea - #242424 - #DFD8F7 - #9880e5 - #2B0B98 - - White - Black - #D600AA - #190649 - #1f1f1f - - #E1E1E1 - #C8C8C8 - #ACACAC - #919191 - #6E6E6E - #404040 - #333333 - #212121 - #141414 - - - - - - - - - - - - - - - + + + + + + + #512BD4 + #ac99ea + #242424 + #DFD8F7 + #9880e5 + #2B0B98 + + White + Black + #D600AA + #190649 + #1f1f1f + + #E1E1E1 + #C8C8C8 + #ACACAC + #919191 + #6E6E6E + #404040 + #333333 + #212121 + #141414 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Resources/Styles/Styles.xaml b/Qwirkle/QwirkleViews/Resources/Styles/Styles.xaml similarity index 98% rename from Qwirkle/Qwirkle/Resources/Styles/Styles.xaml rename to Qwirkle/QwirkleViews/Resources/Styles/Styles.xaml index 98190df..13545d7 100644 --- a/Qwirkle/Qwirkle/Resources/Styles/Styles.xaml +++ b/Qwirkle/QwirkleViews/Resources/Styles/Styles.xaml @@ -1,536 +1,536 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Qwirkle/Qwirkle/Views/ButtonShadow.xaml b/Qwirkle/QwirkleViews/Views/ButtonShadow.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/ButtonShadow.xaml rename to Qwirkle/QwirkleViews/Views/ButtonShadow.xaml diff --git a/Qwirkle/Qwirkle/Views/ButtonShadow.xaml.cs b/Qwirkle/QwirkleViews/Views/ButtonShadow.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/ButtonShadow.xaml.cs rename to Qwirkle/QwirkleViews/Views/ButtonShadow.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/EntryPlayer.xaml b/Qwirkle/QwirkleViews/Views/EntryPlayer.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/EntryPlayer.xaml rename to Qwirkle/QwirkleViews/Views/EntryPlayer.xaml diff --git a/Qwirkle/Qwirkle/Views/EntryPlayer.xaml.cs b/Qwirkle/QwirkleViews/Views/EntryPlayer.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/EntryPlayer.xaml.cs rename to Qwirkle/QwirkleViews/Views/EntryPlayer.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/GoBack.xaml b/Qwirkle/QwirkleViews/Views/GoBack.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/GoBack.xaml rename to Qwirkle/QwirkleViews/Views/GoBack.xaml diff --git a/Qwirkle/Qwirkle/Views/GoBack.xaml.cs b/Qwirkle/QwirkleViews/Views/GoBack.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/GoBack.xaml.cs rename to Qwirkle/QwirkleViews/Views/GoBack.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml b/Qwirkle/QwirkleViews/Views/LeaderboardLine.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/LeaderboardLine.xaml rename to Qwirkle/QwirkleViews/Views/LeaderboardLine.xaml diff --git a/Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs b/Qwirkle/QwirkleViews/Views/LeaderboardLine.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/LeaderboardLine.xaml.cs rename to Qwirkle/QwirkleViews/Views/LeaderboardLine.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/ScoreboardLine.xaml b/Qwirkle/QwirkleViews/Views/ScoreboardLine.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/ScoreboardLine.xaml rename to Qwirkle/QwirkleViews/Views/ScoreboardLine.xaml diff --git a/Qwirkle/Qwirkle/Views/ScoreboardLine.xaml.cs b/Qwirkle/QwirkleViews/Views/ScoreboardLine.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/ScoreboardLine.xaml.cs rename to Qwirkle/QwirkleViews/Views/ScoreboardLine.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/TileCircle.xaml b/Qwirkle/QwirkleViews/Views/TileCircle.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/TileCircle.xaml rename to Qwirkle/QwirkleViews/Views/TileCircle.xaml diff --git a/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs b/Qwirkle/QwirkleViews/Views/TileCircle.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/TileCircle.xaml.cs rename to Qwirkle/QwirkleViews/Views/TileCircle.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/TileClub.xaml b/Qwirkle/QwirkleViews/Views/TileClub.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/TileClub.xaml rename to Qwirkle/QwirkleViews/Views/TileClub.xaml diff --git a/Qwirkle/Qwirkle/Views/TileClub.xaml.cs b/Qwirkle/QwirkleViews/Views/TileClub.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/TileClub.xaml.cs rename to Qwirkle/QwirkleViews/Views/TileClub.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/TileRhombus.xaml b/Qwirkle/QwirkleViews/Views/TileRhombus.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/TileRhombus.xaml rename to Qwirkle/QwirkleViews/Views/TileRhombus.xaml diff --git a/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs b/Qwirkle/QwirkleViews/Views/TileRhombus.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs rename to Qwirkle/QwirkleViews/Views/TileRhombus.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/TileShuriken.xaml b/Qwirkle/QwirkleViews/Views/TileShuriken.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/TileShuriken.xaml rename to Qwirkle/QwirkleViews/Views/TileShuriken.xaml diff --git a/Qwirkle/Qwirkle/Views/TileShuriken.xaml.cs b/Qwirkle/QwirkleViews/Views/TileShuriken.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/TileShuriken.xaml.cs rename to Qwirkle/QwirkleViews/Views/TileShuriken.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/TileSquare.xaml b/Qwirkle/QwirkleViews/Views/TileSquare.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/TileSquare.xaml rename to Qwirkle/QwirkleViews/Views/TileSquare.xaml diff --git a/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs b/Qwirkle/QwirkleViews/Views/TileSquare.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/TileSquare.xaml.cs rename to Qwirkle/QwirkleViews/Views/TileSquare.xaml.cs diff --git a/Qwirkle/Qwirkle/Views/TileStar.xaml b/Qwirkle/QwirkleViews/Views/TileStar.xaml similarity index 100% rename from Qwirkle/Qwirkle/Views/TileStar.xaml rename to Qwirkle/QwirkleViews/Views/TileStar.xaml diff --git a/Qwirkle/Qwirkle/Views/TileStar.xaml.cs b/Qwirkle/QwirkleViews/Views/TileStar.xaml.cs similarity index 100% rename from Qwirkle/Qwirkle/Views/TileStar.xaml.cs rename to Qwirkle/QwirkleViews/Views/TileStar.xaml.cs