Ejemplo n.º 1
0
 public Player()
 {
     Wallet    wallet    = new Wallet();
     Inventory inventory = new Inventory();
 }
Ejemplo n.º 2
0
 private void PerformTransaction(Wallet wallet, double transactionAmount)
 {
     wallet.PayMoneyForItems(transactionAmount);
 }
Ejemplo n.º 3
0
 public Player()
 {
     CurrentMoney     = new Wallet();
     CurrentInventory = new Inventory();
     recipe           = new Recipe();
 }
Ejemplo n.º 4
0
 public Player()
 {
     inventory = new Inventory();
     wallet    = new Wallet();
 }