Example #1
0
        public void TakeItem(string input)
        {
            Item item = CurrentArea.TakeItem(input);

            if (item == null)
            {
                Console.WriteLine("You probably WISH you could get that.");
            }
            else
            {
                CurrentPlayer.addItem(item);
                CurrentArea.Items.Remove(item);
            }
        }