Exemplo n.º 1
0
 public void Start()
 {
     player = new Player();
     Console.Clear();
     Console.WriteLine("\n\tTab: show info player!");
     Console.WriteLine("\n\t1: hanting!");
     while (true)
     {
         if (GetButtom() == ConsoleKey.Tab)
         {
             player.Show();
         }
         else if (GetButtom() == ConsoleKey.D1)
         {
             hunting();
         }
     }
 }