public void Blit(Surface Source) { Blit(Source, new Point(0, 0)); }
public void Blit(Surface Source, Point pos) { Blit(Source, new Rectangle(pos, new Size(Source.Width, Source.Height))); }
public Surface GenerateSurface(int width, int height) { Surface result = Surface.CreateBlankSurface(Graphics, width, height); return(result); }