From 3062f8f945fc5eda450e7bfb40cae39ec4dc2d0b Mon Sep 17 00:00:00 2001 From: "jules.lascret" Date: Sat, 30 Mar 2024 09:53:00 +0100 Subject: [PATCH] Added square, rhombus, circle tiles --- Qwirkle/Qwirkle/Pages/Leaderboard.xaml | 4 ++++ Qwirkle/Qwirkle/Views/TileCircle.xaml | 20 ++++++++++++++++++++ Qwirkle/Qwirkle/Views/TileCircle.xaml.cs | 15 +++++++++++++++ Qwirkle/Qwirkle/Views/TileRhombus.xaml | 23 +++++++++++++++++++++++ Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs | 15 +++++++++++++++ Qwirkle/Qwirkle/Views/TileSquare.xaml | 22 ++++++++++++++++++++++ Qwirkle/Qwirkle/Views/TileSquare.xaml.cs | 15 +++++++++++++++ 7 files changed, 114 insertions(+) create mode 100644 Qwirkle/Qwirkle/Views/TileCircle.xaml create mode 100644 Qwirkle/Qwirkle/Views/TileCircle.xaml.cs create mode 100644 Qwirkle/Qwirkle/Views/TileRhombus.xaml create mode 100644 Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs create mode 100644 Qwirkle/Qwirkle/Views/TileSquare.xaml create mode 100644 Qwirkle/Qwirkle/Views/TileSquare.xaml.cs diff --git a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml index 9468012..f89a654 100644 --- a/Qwirkle/Qwirkle/Pages/Leaderboard.xaml +++ b/Qwirkle/Qwirkle/Pages/Leaderboard.xaml @@ -85,6 +85,10 @@ + + + + diff --git a/Qwirkle/Qwirkle/Views/TileCircle.xaml b/Qwirkle/Qwirkle/Views/TileCircle.xaml new file mode 100644 index 0000000..d9bb719 --- /dev/null +++ b/Qwirkle/Qwirkle/Views/TileCircle.xaml @@ -0,0 +1,20 @@ + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs b/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs new file mode 100644 index 0000000..ced6aa4 --- /dev/null +++ b/Qwirkle/Qwirkle/Views/TileCircle.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Qwirkle.Views; + +public partial class TileCircle : ContentView +{ + public TileCircle() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/TileRhombus.xaml b/Qwirkle/Qwirkle/Views/TileRhombus.xaml new file mode 100644 index 0000000..b0f9fd4 --- /dev/null +++ b/Qwirkle/Qwirkle/Views/TileRhombus.xaml @@ -0,0 +1,23 @@ + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs b/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs new file mode 100644 index 0000000..c17abac --- /dev/null +++ b/Qwirkle/Qwirkle/Views/TileRhombus.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Qwirkle.Views; + +public partial class TileRhombus : ContentView +{ + public TileRhombus() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/TileSquare.xaml b/Qwirkle/Qwirkle/Views/TileSquare.xaml new file mode 100644 index 0000000..f051735 --- /dev/null +++ b/Qwirkle/Qwirkle/Views/TileSquare.xaml @@ -0,0 +1,22 @@ + + + + + + + + \ No newline at end of file diff --git a/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs b/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs new file mode 100644 index 0000000..95e5a00 --- /dev/null +++ b/Qwirkle/Qwirkle/Views/TileSquare.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Qwirkle.Views; + +public partial class TileSquare : ContentView +{ + public TileSquare() + { + InitializeComponent(); + } +} \ No newline at end of file