trad + new message / delete message

master
Jérémy Mouyon 11 months ago
parent d24b19e757
commit 4bef870bd6

@ -109,8 +109,6 @@ public partial class Gameboard : ContentPage
{
var x = game.GetPlayerScore(game.GetPlayingPlayer(), game.CellsUsed, game.GetBoard()!);
DisplayAlert("TEMP ALERT FOR DEBUG", game.GetPlayingPlayer().ToString() + " win : " + x, "Copy !");
game.EmptyCellUsed();
game.DrawTiles(game.GetPlayingPlayer());
}
@ -203,6 +201,10 @@ public partial class Gameboard : ContentPage
{
_ = AnswerSwap();
}
else
{
DisplayAlert("Swap system", "You cannot place tiles and swap in the same turn.", "Ok !");
}
game.PlaceTileNotified -= Game_PlaceTileNotified;
}

@ -36,7 +36,7 @@
DropCommand="{Binding OnDropB, Source={x:Reference root}}" />
</Border.GestureRecognizers>
<Image Source="bag.png"
ToolTipProperties.Text="Pour m'utiliser il faut cliquer sur le boutton swap avant ^^">
ToolTipProperties.Text="To use me, you need to click the swap button first ^^">
</Image>
</Border>

@ -1,7 +1,7 @@
{
"profiles": {
"Windows Machine": {
"commandName": "MsixPackage",
"commandName": "Project",
"nativeDebugging": false
}
}

@ -29,6 +29,9 @@
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<WindowsPackageType Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">None</WindowsPackageType>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>

Loading…
Cancel
Save