//Other Methods public void Play()//controller method { theGame = new FarmerGame(); DisplayWelcome(); DisplayInitialGameState(); MessagePrompt("Do you want to continue this game?", "Click RESET to start again or EXIT to end this game."); }
//Constructor Method public FarmerGameUI() { theGame = new FarmerGame(); InitializeComponent(); Play(); }