Beispiel #1
0
 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);
 }
Beispiel #2
0
 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);
 }