Some renamings

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

View File

@@ -17,7 +17,7 @@ namespace _2DGAMELIB
private int h;
private Rectangle r;
private System.Drawing.Rectangle r;
private ColorMatrix cm = new ColorMatrix();
@@ -31,7 +31,7 @@ namespace _2DGAMELIB
GS = Graphics.FromImage(Start);
End = new Bitmap(w, h);
GE = Graphics.FromImage(End);
r = new Rectangle(0, 0, w, h);
r = new System.Drawing.Rectangle(0, 0, w, h);
}
public void TransformAlpha(Graphics Graphics, double Rate)