Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Location

PointF System.Drawing.RectangleF.Location
getset

Definition at line 23 of file RectangleF.cs.

24 {
25 readonly get
26 {
27 return new PointF(X, Y);
28 }
29 set
30 {
31 X = value.X;
32 Y = value.Y;
33 }
34 }