Exemple #1
0
 /// <summary>
 /// Renders a Graphic to the current target Surface.
 /// </summary>
 /// <param name="graphic">The Graphic to render.</param>
 /// <param name="x">The x offset to position the Graphic at.</param>
 /// <param name="y">The y offset to position the Graphic at.</param>
 static public void Graphic(OtterDrawables.Graphic graphic, float x = 0, float y = 0)
 {
     graphic.Render(x, y);
 }