예제 #1
0
 public Player(string name, int gold)
 {
     this.name = name;
     this.gold = gold;
     inventory = new Inventory("Inventory");
     book      = new RecipeBook();
 }
예제 #2
0
 public void setPlayerBook(RecipeBook book)
 {
     this.book = book;
 }