コード例 #1
0
ファイル: Game.cs プロジェクト: ctcb57/lemonade_Stand
 public void OnePlayerGameSetup()
 {
     player1 = new Player();
     UserInterface.DisplayOnePlayerNameChoice(player1);
     store            = new Store();
     player1Inventory = new Inventory();
     player1Day       = new Day();
     player1Stand     = new Stand();
     player1Customers = new Customer();
     player1Weather   = new Weather();
 }