public void TwoPlayerGameSetup() { player1 = new Player(); player2 = new Player(); UserInterface.DisplayFirstPlayerNameChoice(player1); UserInterface.DisplaySecondPlayerNameChoice(player2); store = new Store(); player1Inventory = new Inventory(); player2Inventory = new Inventory(); player1Day = new Day(); player2Day = new Day(); player1Stand = new Stand(); player2Stand = new Stand(); player1Customers = new Customer(); player2Customers = new Customer(); player1Weather = new Weather(); player2Weather = new Weather(); }