Example #1
0
        /// <summary>
        /// Shows 'pass' button with different texts on my side of screen
        /// </summary>
        protected override void AnimateShowPassButton(PassButtonText passButton)
        {
            switch (passButton)
            {
            case PassButtonText.Beaten:
                _myPlayerInfoDisplay.ShowBeatenbutton();
                break;

            case PassButtonText.Pass:
                _myPlayerInfoDisplay.ShowPassbutton();
                break;

            case PassButtonText.PickUpCards:
                _myPlayerInfoDisplay.ShowPickUpCardsButton();
                break;
            }
        }
Example #2
0
 protected abstract void AnimateShowPassButton(PassButtonText passButton);