private void BuyItem() { var ItemShop = new Shop(Hero); ItemShop.Start(); Console.WriteLine("Press any key to return to main menu."); Console.ReadKey(); }
public void Shop() { var shop = new Shop(this, Hero); shop.Start(); }
private void Shop() { var shop = new Shop(Hero); shop.Start(); }