示例#1
0
 public void Look(string[] input)
 {
     if (input.Length > 1)
     {
         CurrentArea.Look(input[1]);
     }
     else
     {
         Console.WriteLine(CurrentArea.Description);
     }
 }