Merge branch 'master' of https://codefirst.iut.uca.fr/git/jeremy.mouyon/sae201_qwirkle
commit
86f31a0843
@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Qwirkle.Pages.Rules"
|
||||
xmlns:controls="clr-namespace:Qwirkle.Views"
|
||||
Title="Rules">
|
||||
<ScrollView>
|
||||
<VerticalStackLayout>
|
||||
<Grid Style="{StaticResource GridMain}">
|
||||
<controls:GoBack></controls:GoBack>
|
||||
<Label Text="Qwirkle Rules"
|
||||
Style="{StaticResource Title}" />
|
||||
</Grid>
|
||||
|
||||
<Label
|
||||
Text="Game Composition"
|
||||
Style="{StaticResource RulesSubTitle}"/>
|
||||
|
||||
<Label
|
||||
Text="The game is composed of 3 sets of 36 tiles, each set containing 6 tiles of each of the 6 colors and 6 shapes."
|
||||
Style="{StaticResource RulesContent}"/>
|
||||
|
||||
<Label
|
||||
Text="Who Starts ?"
|
||||
Style="{StaticResource RulesSubTitle}" />
|
||||
|
||||
<Label
|
||||
Text="In order to determine who starts, the algorithm checks which player has the most tiles with the same shape or color."
|
||||
Style="{StaticResource RulesContent}" />
|
||||
<Label
|
||||
Text="Then, the first player can place his tiles wherever he wants on the board."
|
||||
Style="{StaticResource RulesContent}" />
|
||||
|
||||
<Label
|
||||
Text="Progress of the game"
|
||||
Style="{StaticResource RulesSubTitle}" />
|
||||
|
||||
<Label
|
||||
Text="Each player can then place as many tiles as they want on the board, as long as they respect these 3 rules:"
|
||||
Style="{StaticResource RulesContent}" />
|
||||
<Label
|
||||
Text="1. The tiles must be placed in a straight line/column."
|
||||
Style="{StaticResource RulesContent}" />
|
||||
<Label
|
||||
Text="2. On a line assigned to a certain color/shape, the tiles must have the same color/shape."
|
||||
Style="{StaticResource RulesContent}" />
|
||||
|
||||
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</ContentPage>
|
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Qwirkle.Pages;
|
||||
|
||||
public partial class Rules : ContentPage
|
||||
{
|
||||
public Rules()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue