Ejemplo n.º 1
0
 // D R A W
 public void Draw(int x, int y, String s)
 {
     if (dark_border)
     {
         Vector2 sz = quad.MeasureStringFast(s); quad.DrawDest(pixel, new Rectangle(x, y, (int)(sz.X * 1.01f), (int)(sz.Y * 0.8f)), dark_color);
     }
     quad.DrawStringFast(s, new Vector2((float)x, (float)y), color);
 }