public override void StartTurn(TurnType turnType)
 {
     base.StartTurn(turnType);
     if (turnType == TurnType.GarbLandlord)
     {
         view.ButtonsSwitchGrabLandlord();
     }
     else if (turnType == TurnType.PlayCard)
     {
         view.ButtonsSwitchPlayCard();
     }
     view.ShowButtons();
     view.EnableButtons();
 }