How would you increase the maximum size of a players hand

From TRCCompSci - AQA Computer Science
Revision as of 11:40, 14 November 2017 by MattPeet (talk | contribs)
Jump to: navigation, search

You would increase the value for the integer MaxHandSize.

 static void Main(string[] args)
        {
            List<String> AllowedWords = new List<string>();
            Dictionary<Char, int> TileDictionary = new Dictionary<char, int>();
            int MaxHandSize = 20;