Difference between revisions of "DisplayTilesInHand"
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | The method that displays the | + | The method that displays the tiles in a players hand takes the string PlayerTiles and writes it to the console. |
The player can do this at any time during their turn by pressing "7" on their turn. | The player can do this at any time during their turn by pressing "7" on their turn. |
Latest revision as of 13:58, 14 November 2017
private static void DisplayTilesInHand(string PlayerTiles)
{
Console.WriteLine();
Console.WriteLine("Your current hand:" + PlayerTiles);
}
The method that displays the tiles in a players hand takes the string PlayerTiles and writes it to the console. The player can do this at any time during their turn by pressing "7" on their turn.