Some renamings

This commit is contained in:
Absolutely disgusting
2025-10-29 17:26:09 +04:00
parent c5632629a5
commit a33be4c8f5
6 changed files with 10 additions and 10 deletions

View File

@@ -43,9 +43,9 @@ namespace _2DGAMELIB
return Func(new Hsv(ref Color)).GetColor();
}
public static Rectangle GetRect(this Bitmap Bmp)
public static System.Drawing.Rectangle GetRect(this Bitmap Bmp)
{
return new Rectangle(0, 0, Bmp.Width, Bmp.Height);
return new System.Drawing.Rectangle(0, 0, Bmp.Width, Bmp.Height);
}
public static LinearGradientBrush GetLGB(double Unit, Vector2D[] MM, Color Color1, Color Color2)