Ejemplo n.º 1
0
 public void Draw(SpriteBatchProxy spriteBatch)
 {
     foreach (Rectangle r in _debug)
     {
         spriteBatch.DrawRectangle(r, Color.Green * 0.75f);
     }
 }
Ejemplo n.º 2
0
 public void DrawFade(SpriteBatchProxy spriteBatch)
 {
     spriteBatch.DrawRectangle(new Rectangle(0, 0, Resolution.VirtualWidth, Resolution.VirtualHeight), _fadingColor * _currentFadeInOut);
 }