public Player(string name, int gold) { this.name = name; this.gold = gold; inventory = new Inventory("Inventory"); book = new RecipeBook(); }
public void setPlayerBook(RecipeBook book) { this.book = book; }