How would you increase the maximum size of a players hand

From TRCCompSci - AQA Computer Science
Revision as of 18:40, 14 November 2017 by M0hk4l3 (talk | contribs) (Shortened + Simplfified + Completed)
Jump to: navigation, search
static void Main(string[] args) {
    // ... Some Stuff Here

    int MaxHandSize = 25;

    // Some Stuff Here
}

In the main method there is a variable defined which is called MaxHandSize. U can set this to any desired number and then the max size of the players hand will be set to that. For example 25.