public void Draw(Bitmap bmp, Screen.ScreenLayer layer, Vector2 position, bool transparentBackground = false, Pivot pivot = Pivot.Center, bool clear = true, bool BitmapFix = false) { Draw(bmp, (int)layer, position, transparentBackground, pivot, clear, BitmapFix); }
public void Draw(Bitmap bmp, Screen.ScreenLayer layer, int top = 0, int left = 0, bool transparentBackground = false, Pivot pivot = Pivot.Center, bool clear = true, bool BitmapFix = false) { Draw(bmp, (int)layer, new Vector2(left, top), transparentBackground, pivot, clear, BitmapFix); }