Example #1
0
 public void Talk(string[] input)
 {
     if (input.Length > 1)
     {
         CurrentArea.Talk(input[1], CurrentPlayer);
     }
     else
     {
         Console.WriteLine("Don't talk to yourself.");
     }
 }