Пример #1
0
 public void Draw(SpriteBatch spriteBatch)
 {
     lock (_mutex)
     {
         _cardFragment.Draw(spriteBatch);
         _statusFragment.Draw(spriteBatch);
         _bidChoiceFragment.Draw(spriteBatch);
         _dabbChoiceFragment.Draw(spriteBatch);
     }
 }
Пример #2
0
        public void Draw(SpriteBatch spriteBatch)
        {
            lock (_mutex)
            {
                if (_cardFragment == null)
                {
                    return;
                }

                _cardFragment.Draw(spriteBatch);
                _statusFragment.Draw(spriteBatch);
                _indicatorFragment.Draw(spriteBatch);
            }
        }