Exemple #1
0
        public void DrawBonus(DrawAnyObject painter)
        {
            Ring myPreshes = new Ring(0, 0, 15, 20);

            myPreshes.Draw(painter);
            bonusPic = myPreshes;
        }
Exemple #2
0
        public void DrawBonus(DrawAnyObject painter)
        {
            Rectangle rect = new Rectangle(0, 0, 20, 20);

            rect.Draw(painter);
            bonusPic = rect;
        }
Exemple #3
0
        public void DrawBonus(DrawAnyObject painter)
        {
            Round apple = new Round(0, 0, 20);

            apple.Draw(painter);
            bonusPic = apple;
        }