Exemplo n.º 1
0
        public void Draw()
        {
            //baseRect.Draw();
            //cannonRect.Draw();
            sprite.Draw();

            for (int i = 0; i < bullets.Length; i++)
            {
                if (bullets[i].IsAlive)
                {
                    bullets[i].Draw();
                }
            }
        }
Exemplo n.º 2
0
 public void Draw()
 {
     sprite.Draw();
 }